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

{{ config.title }}

Créatrice d'objets singuliers

{%- if not current_path == "/" -%} Accueil {%- endif -%} {%- if not page or page and not page.title == "Contact" -%} 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 }}

{%- if sect.extra.button -%} {%- endif -%}
{{- sect.content | split(pat="") | first | 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 %}