<!DOCTYPE html> {% include head.html %}
{% include i18n.html key="Titre_principal_html" %}
{{ site.producteur }}
{{ site.producteur_complement }}

{{ page.content | markdownify }}
{% for contenus in site.contenus %}{% if contenus.type == "partie" and contenus.partie_numero == 1 %}
{% include i18n.html key="Partie" %} {{ contenus.partie_numero }} {{ contenus.title }}
{{ contenus.sous_titre }}
{% endif %}{% endfor %}


{% for contenus in site.contenus %}{% if contenus.type == "partie" and contenus.partie_numero == 2 %}
{% include i18n.html key="Partie" %} {{ contenus.partie_numero }} {{ contenus.title }}
{{ contenus.sous_titre }}
{% endif %}{% endfor %}


{% for contenus in site.contenus %}{% if contenus.type == "partie" and contenus.partie_numero == 3 %}
{% include i18n.html key="Partie" %} {{ contenus.partie_numero }} {{ contenus.title }}
{{ contenus.sous_titre }}
{% endif %}{% endfor %}


{% for contenus in site.contenus %}{% if contenus.type == "partie" and contenus.partie_numero == 4 %}
{% include i18n.html key="Partie" %} {{ contenus.partie_numero }} {{ contenus.title }}
{{ contenus.sous_titre }}
{% endif %}{% endfor %}

