1
0
Fork 0
website/templates/postsindex.html

11 lines
275 B
HTML
Raw Normal View History

2022-08-31 23:20:59 +02:00
{% extends "base.html" %}
{% block main %}
2022-09-05 00:02:58 +02:00
<h1>posts</h1>
<p>i occasionally write some stuff i guess</p>
2022-08-31 23:20:59 +02:00
<ul>
{% for post in posts %}
<li><a href="/posts/{{post.name}}">{{post.name}}</a></li>
{% endfor %}
</ul>
{% endblock main %}