Files
blog_os/blog/templates/status-update-section.html
2019-05-01 19:31:32 +02:00

24 lines
579 B
HTML

{% extends "second-edition/base.html" %}
{% import "macros.html" as macros %}
{% block title %}{{ section.title }} | {{ config.title }}{% endblock title %}
{% block main %}
<h1>{{ section.title }}</h1>
{% block introduction %}
<p>
These posts give a semi-regular overview of the most important changes to the blog and the tools and libraries behind the scenes.
</p>
{% endblock introduction %}
<div><ul>
{% for page in section.pages %}
<li><b><a href="/{{ page.path | safe }}">{{ page.title }}</a></b></li>
{% endfor %}
</ul></div>
{% endblock main %}