blog/templates/index.html
2026-01-30 16:42:49 +01:00

23 lines
803 B
HTML

{% extends "base.html" %}
{% block content %}
<article class="homepage">
{{ section.content | safe }}
</article>
<section class="recent-posts">
<h2>Recent Posts</h2>
{% set ais = get_section(path="ais/_index.md") %}
{% set homelab = get_section(path="homelab/_index.md") %}
{% set ml_tech = get_section(path="ml-tech/_index.md") %}
{% set all_pages = ais.pages | concat(with=homelab.pages) | concat(with=ml_tech.pages) %}
<ul class="post-list">
{% for page in all_pages | sort(attribute="date") | reverse | 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 %}