{% extends "base.html" %} {% if article.lang %} {% block lang %}{{ article.lang }}{% endblock %} {% endif %} {% block head %} {{ super() }} {% if article.description %} {% endif %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block title %}{{ article.title }} | Balsamine {% endblock %} {% block content %}

{{ article.title }}

{# author var #} {% if article.piece_authors %}

{% for author in article.piece_authors %}{% if loop.index > 1 %}/​{% endif %}{{ author }}{% endfor %}

{% else %}

{{ article.piece_author }}

{% endif %} {# event type var #} {% if article.event_type %} {{article.event_type}} {% endif %} {# Article / show time #} {% with time = article.time %} {% include "partials/article__time.html" %} {% endwith %}
{% if article.price %}

{{article.price}}

{% endif %} {% if article.subhead %}

{{ article.subhead }}

{% endif %} {% if article.length %} {% if article.in_default_lang %} durée: {{article.length}} {% else %} length: {{article.length}} {% endif %} {% endif %} {% if article.age %} {% if article.in_default_lang %}

âge: {{article.age|safe}}

{% else %}

age: {{article.age|safe}}

{% endif %} {% endif %} {% if article.partner_logo %}
{% if article.partner_logo is string %} {% else %} {% for logo in article.partner_logo %} {% endfor %} {% endif %}
{% endif %} {# reservation var #} {% if article.reservation_link %} {% if article.lang == 'en' %}Make reservation{% else %}Réserver{% endif %} {% endif %} {% if article.translations %} {% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }} {% endif %} {% if article.key_image_detail_body %}

Main image for {{ article.title }}

{% endif %}
{{ article.content }}
{% endblock %}