{% extends "base.html.twig" %} {% block style %} html, body{ height: 100%; font-family: Roboto,sans-serif; } @media (max-width: 740px) { html, body{ height: 100vh; font-family: Roboto,sans-serif; } } .h1-default{ font-weight: 700; font-size:82px; letter-spacing: 0.015em; line-height: 1em; } @media (max-width: 740px) { .h1-default{ font-size: 13vw; } } {% endblock %} {% block intro %}
{% if content.intro_image.thumbnails['x400'] is defined %}

{{ content.title }}

{% else %}

{{ content.title }}

{% endif %}
{% endblock %} {% block content %}
{% if content.recettes|default([])|length %}
{% for recette in content.recettes %}
{% if recette.type == 'recette' %}

{{ recette.title }}

{{ recette.text | raw }}
{% else %} smaple image {% endif %}

{% endfor %}
{% endif %}
{% endblock %}