1
0
Fork 0
website/templates/postsindex.html

11 lines
349 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 %}
2023-03-25 12:23:11 +01:00
<li><a href="{{post.absolute_path}}">{% if post.frontmatter %}{{post.frontmatter.title}}{% else %}{{post.slug}}{% endif %}</a></li>
2022-08-31 23:20:59 +02:00
{% endfor %}
</ul>
{% endblock main %}