{% set with_lateral = false %}
{% if page.meta is defined and page.meta.sidemenu is defined %}
{% if page.meta.sidemenu %}{% set with_lateral = true %}{% endif %}
{% else %}
{% if afficher_menu_lateral %}{% set with_lateral = true %}{% endif %}
{% endif %}
{% if with_lateral %}
{% include "lateral.html" %}
{% if page.meta is defined and page.meta.breadcrumb is defined %}
{% include "breadcrumb.html" %}
{% else %}
{% endif %}
{% else %}
{% if page.meta is defined and page.meta.breadcrumb is defined %}
{% if config.theme.infolettre is defined %}
{% include "newsletter.html" %}
{% endif %}
{% include "footer.html" %}
{% include "scripts.html" %}
{% include "breadcrumb.html" %}
{% else %}
{% include "prev-next-nav.html" %}
{% endif %}
{% endif %}
{% if page.meta and page.meta.summary is defined %}
{% if page.meta.summary %}{% include "summary.html" %}{% endif %}
{% elif config.theme.afficher_sommaire %}
{% include "summary.html" %}
{% endif %}
{% if tags_index is defined %}
{% if page.meta and page.meta.tags_index is defined %}
{% include "tags_index.html" %}
{% else %}
{% include "tags.html" %}
{% endif %}
{% endif %}
{% block content %}
{{ page.content }}
{% endblock %}
{% if config.theme.bouton_hautdepage == "left" %}
{% elif config.theme.bouton_hautdepage == "right" %}
{% endif %}
{% include "prev-next-nav.html" %}