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

15 lines
545 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>
{% set ancestor = page.relative_path | split(pat="/") | first %} {%- if ancestor
in ["creation", "reparation"] -%}
<p class="subtitle is-5 has-text-primary-dark">SECTION</p>
{%- endif -%} {%- if page.date -%}
<time datetime="{{ page.date }}">
Réalisé le
<span class="is-info">{{ page.date | date(format="%Y-%m-%d") }}</span>
</time>
{%- endif -%}
<section class="content-section">{{- page.content | safe -}}</section>
{% endblock content %}