finga
4aff0378ac
Deprecate the bulma css framework in favor of normalize and milligram. Adapt the templates to work with the new css libraries.
24 lines
645 B
HTML
24 lines
645 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{% if section.extra.start %}
|
|
{{ config.title }} | {{ section.extra.start }} - {{ section.extra.end }}: {{ section.title }}
|
|
{% else %}
|
|
{{ config.title }}
|
|
{% endif %}
|
|
{% endblock title %}
|
|
|
|
{% block subtitle %}
|
|
{% if section.extra.start %}
|
|
<h2>{{ section.extra.start }} - {{ section.extra.end }}: {{ section.title }}</h2>
|
|
{% endif %}
|
|
{% endblock subtitle %}
|
|
|
|
{% block content %}
|
|
{{ section.content | safe }}
|
|
<ul>
|
|
{% for page in section.pages | reverse %}
|
|
<li><a href="{{ page.permalink | safe }}">{{ page.date | safe }} - {{ page.title | safe }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock content %}
|