14 lines
545 B
HTML
14 lines
545 B
HTML
{% extends "base.html" %} {% block content %}
|
|
|
|
<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 %}
|