7 lines
181 B
HTML
7 lines
181 B
HTML
{% for post in posts %}
|
|
<a href="{{ url_for('post', name=post.path.replace('posts/', '')) }}">
|
|
{{ post.title }}
|
|
</a>
|
|
<small>{{ post.date }}</small>
|
|
{% endfor %}
|