mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27: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
20 lines
417 B
HTML
20 lines
417 B
HTML
{% extends "edition-1/base.html" %}
|
|
|
|
{% import "edition-1/macros.html" as macros %}
|
|
|
|
{% block title %}{{ section.title }} | {{ config.title }}{% endblock title %}
|
|
|
|
{% block main %}
|
|
|
|
<h1>{{ section.title }}</h1>
|
|
|
|
{% block introduction %}{% endblock introduction %}
|
|
|
|
<div class="posts neutral">
|
|
{% for page in section.pages %}
|
|
{{ macros::post_link(page=page) }}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% endblock main %}
|