You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
327 B
HTML
12 lines
327 B
HTML
|
1 day ago
|
{% extends "base.html" %}
|
||
|
|
|
||
|
|
{% block title %}{{ page.title }} — {{ config.title }}{% endblock title %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
<article class="article">
|
||
|
|
<h1>{{ page.title }}</h1>
|
||
|
|
{{ page.content | safe }}
|
||
|
|
<a class="back-link" href="{{ config.base_url }}">← Retour à l'accueil</a>
|
||
|
|
</article>
|
||
|
|
{% endblock content %}
|