Files
web_intern/templates/posts.html
Andreas Stephanides aa8532c70d css, templates
2017-02-01 22:27:19 +01:00

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 %}