website/templates/blog.html
2026-04-29 17:17:46 +01:00

12 lines
275 B
HTML

{% extends "base.html" %}
{% block title %}ily blog{% endblock %}
{% block content %}
<h1>{{ section.title }}</h1>
<ul>
{% for post in section.pages %}
<li>{{ post.date }} — <a href="{{ post.permalink }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}