This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues/pull-requests.
docs/templates/blog.html

13 lines
247 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}