awaaaaa (ça avance pas mal)

This commit is contained in:
OniriCorpe 2026-04-16 05:22:41 +02:00
parent 07731d18a9
commit 26bb0eefee
15 changed files with 171 additions and 98 deletions

View file

@ -1,9 +1,14 @@
{% extends "base.html" %} {% block content %}
<section class="section">
<div class="content container is-desktop">
<h1 class="title is-2">{{ page.title }}</h1>
<hr />
{{- page.content | safe -}} {% endblock content %}
</div>
</section>
<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 %}