sergio.am/_layouts/home.html

15 lines
396 B
HTML
Raw Normal View History

2021-11-02 19:10:47 +00:00
---
layout: default
home: true
---
2022-05-11 17:57:29 +00:00
<h3 class="posts-item-note" aria-label="Recent Posts">Recent Posts ↓</h3>
2021-11-02 19:10:47 +00:00
{%- for post in site.posts limit: site.number_of_posts -%}
<article class="post-item">
2022-05-07 17:46:12 +00:00
<span class="post-item-date">{{ post.date | date: "%d %b %Y" }}</span>
2021-11-02 19:10:47 +00:00
<h4 class="post-item-title">
<a href="{{ post.url }}">{{ post.title | escape }}</a>
</h4>
</article>
{%- endfor -%}