15 lines
435 B
HTML
15 lines
435 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block main -%}
|
||
|
<h1>posts</h1>
|
||
|
<p>i occasionally write some stuff i guess</p>
|
||
|
<ul>
|
||
|
{% for post in posts -%}
|
||
|
<li><a href="{{post.absolute_path | safe}}">{% if post.frontmatter -%}
|
||
|
{{post.frontmatter.title -}}
|
||
|
{% else -%}
|
||
|
{{post.slug -}}
|
||
|
{% endif -%}
|
||
|
</a></li>
|
||
|
{% endfor -%}
|
||
|
</ul>
|
||
|
{% endblock main -%}
|