finga
4aff0378ac
Deprecate the bulma css framework in favor of normalize and milligram. Adapt the templates to work with the new css libraries.
21 lines
497 B
HTML
21 lines
497 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ config.title }}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="content">
|
|
<div class="block">
|
|
{{ section.content | safe }}
|
|
</div>
|
|
<div class="block">
|
|
<ul>
|
|
{% for subsection in section.subsections | reverse %}
|
|
{% set subsection = get_section(path=subsection) %}
|
|
<li><a href="{{ subsection.path | safe }}">{{ subsection.title | safe }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|