mono-3d.fr/templates/page.html

21 lines
640 B
HTML
Raw Normal View History

2026-04-15 03:58:05 +02:00
{% extends "base.html" %} {% block content %}
2026-04-16 05:22:41 +02:00
<h2 class="title is-3">{{- page.title -}}</h2>
2026-04-17 00:29:49 +02:00
{% set ancestor = get_section(path=page.ancestors | last) %} {%- if
ancestor.title in ["Création", "Réparation"] -%}
<p class="subtitle is-5 has-text-primary-dark">{{ ancestor.title }}</p>
2026-04-16 05:22:41 +02:00
{%- endif -%} {%- if page.date -%}
2026-04-17 00:29:49 +02:00
<p class="mb-5">
<time datetime="{{ page.date }}">
Réalisé le
<span class="is-info"
>{{ page.date | date(locale="fr_FR", format="%d %B %Y") }}</span
>
</time>
</p>
2026-04-16 05:22:41 +02:00
{%- endif -%}
2026-04-17 00:29:49 +02:00
2026-04-16 05:22:41 +02:00
<section class="content-section">{{- page.content | safe -}}</section>
2026-04-17 00:29:49 +02:00
2026-04-16 05:22:41 +02:00
{% endblock content %}