mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
23 lines
509 B
HTML
23 lines
509 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ section.title }} | {{ config.title }}{% endblock title %}
|
|
|
|
{% block main %}
|
|
|
|
<h1>{{ section.title }}</h1>
|
|
|
|
{% block introduction %}
|
|
<p>{{ section.description }}</p>
|
|
{% endblock introduction %}
|
|
|
|
<div class="status-update-list">
|
|
<ul>
|
|
{% include "auto/status-updates.html" %}
|
|
{% for page in section.pages %}
|
|
<li><b><a href="{{ page.path | safe }}">{{ page.title }}</a></b></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
{% endblock main %}
|