added recent posts to index

This commit is contained in:
Silas Bartha 2024-08-18 15:51:03 -04:00
parent 16f288218d
commit 2e5297636e
Signed by: soaos
GPG Key ID: 9BD3DCC0D56A09B2

View File

@ -2,4 +2,12 @@
{% block content %}
{{ section.content | safe }}
<br/>
recent posts
{% set section = get_section(path="blog/_index.md") %}
<ul>
{% for page in section.pages | slice(end=5) %}
<li><a href="{{page.permalink}}">{{page.title}}</a> ({{page.date}})</li>
{% endfor %}
</ul>
{% endblock content %}