mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
- Split macros.html in per-edition files - Create new snippets.html macro file with utterances snippet - Move support.html to snippets.html as new macro - Create new `latest_post` macro in 2nd edition macros.html
21 lines
460 B
HTML
21 lines
460 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><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 %}
|