site/templates/blog.html

18 lines
364 B
HTML

{% extends "base.html" %}
{% block title %}{{section.title}}{% endblock title %}
{% block content %}
<div class="text-align-center">
<h1 class="header">
{{ section.title }}
</h1>
things I write sometimes
</div>
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}