11 lines
No EOL
349 B
HTML
11 lines
No EOL
349 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}}">{% if post.frontmatter %}{{post.frontmatter.title}}{% else %}{{post.slug}}{% endif %}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock main %} |