blog/templates/index.html
2026-01-30 16:19:41 +01:00

20 lines
553 B
HTML

{% extends "base.html" %}
{% block content %}
<article class="homepage">
{{ section.content | safe }}
</article>
<section class="recent-posts">
<h2>Recent Posts</h2>
{% set blog = get_section(path="blog/_index.md") %}
<ul class="post-list">
{% for page in blog.pages | slice(end=5) %}
<li>
<time datetime="{{ page.date }}">{{ page.date | date(format="%Y-%m-%d") }}</time>
<a href="{{ page.permalink }}">{{ page.title }}</a>
</li>
{% endfor %}
</ul>
</section>
{% endblock content %}