mirror of
https://git.librezo.fr/Librezo/website.git
synced 2024-11-21 18:41:37 +01:00
14 lines
353 B
HTML
14 lines
353 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{% if section.title %}{{ section.title }} | {% endif %}{{ config.extra.sitename|safe }}{% endblock title %}
|
|
|
|
{% block head %}
|
|
{% endblock head %}
|
|
|
|
{% block body %}
|
|
<main class="narrower">
|
|
{% if section.title %}<h1>{{ section.title }}</h1>{% endif %}
|
|
{{ section.content | safe }}
|
|
</main>
|
|
{% endblock body %}
|