2022-09-30 17:54:01 +03:00
|
|
|
{% extends "base.jinja2" %}
|
|
|
|
{% block content %}
|
|
|
|
<section id="posts">
|
|
|
|
<ul id="posts">
|
|
|
|
{% for post in aggr.posts %}
|
|
|
|
<li>
|
2022-10-21 22:29:23 +03:00
|
|
|
<a href="{{ post.path }}">{{ post.title }}</a><br>
|
|
|
|
<span class="meta">{{ post.date }}</span>
|
2022-09-30 17:54:01 +03:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</section>
|
2022-10-21 22:29:23 +03:00
|
|
|
<section>
|
|
|
|
{{ html | safe }}
|
|
|
|
</section>
|
2022-09-30 17:54:01 +03:00
|
|
|
{% endblock %}
|