{% extends "base.html" %} {% block content %}

{{ config.title }}

Créatrice d'objets singuliers

{%- if page and page.title == "Contact" -%} Retour à l'accueil {%- else -%} Me contacter {%- endif -%}
{%- if section -%} {%- if not section.extra.hide_title -%}

{{- section.title -}}

{%- if section.extra.subtitle -%}

{{- section.extra.subtitle -}}

{%- endif -%} {%- endif -%} {{- section.content | safe -}} {% for sect in section.subsections %} {%- set sect = get_section(path=sect) %}

{{ sect.title }}

{{ sect.extra.subtitle }}

{{- sect.content | safe -}}
{% if not loop.last %}
{% endif %} {% endfor -%} {%- endif -%} {%- if page -%} {%- if not page.extra.hide_title -%}

{{- page.title -}}

{%- if page.extra.subtitle -%}

{{- page.extra.subtitle -}}

{%- endif -%} {%- endif -%}
{{- page.content | safe -}}
{%- endif -%}
{% endblock content %}