14 lines
324 B
Plaintext
14 lines
324 B
Plaintext
|
{% extends "base.jinja2" %}
|
||
|
{% block content %}
|
||
|
<section id="posts">
|
||
|
<ul id="posts">
|
||
|
{% for post in aggr.posts %}
|
||
|
<li>
|
||
|
<a href="{{ post.path }}">{{ post.title }}</a>
|
||
|
<span class="meta"> — {{ post.date }}</span>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</section>
|
||
|
{% endblock %}
|