{% extends 'partials/base.html.twig' %} {% block body %} {%- set cat = page.parent and page.parent.template == 'category' ? page.parent : null -%} {%- set hero = page.header.hero_image ? page.media[page.header.hero_image] : null -%} {%- set author_slug = page.header.taxonomy.author[0] ?? page.header.author ?? null -%} {%- set author = author_slug ? page.find('/autores/' ~ author_slug) : null -%} {%- set author_name = author ? author.title : (author_slug ? author_slug|replace({'-': ' '})|title : site.author.name) -%} {%- set author_photo = author and author.header.photo ? author.media[author.header.photo] : null -%} {%- set words = page.content|striptags|trim|split(' ')|length -%} {%- set read_min = max(1, (words / 200)|round(0, 'ceil')) -%}
{% include 'partials/breadcrumbs.html.twig' %}
{% if cat %}{% include 'partials/editoria-badge.html.twig' with {cat: cat} %}{% endif %}

{{ page.title }}

{% if page.header.summary %}

{{ page.header.summary }}

{% endif %}
{% include 'partials/social-share.html.twig' with {layout: 'rail'} %}
{% if hero %}
{% include 'partials/img.html.twig' with {media: hero, alt: page.header.hero_alt ?: page.title, ratio: 'ratio--16x9'} %} {% if page.header.hero_credit %}
{{ page.header.hero_credit }}
{% endif %}
{% endif %}
{{ content|raw }}
{% set tags = page.header.taxonomy.tag ?? [] %} {% if tags %} {% endif %} {% include 'partials/social-share.html.twig' with {layout: 'bar'} %} {% if author %} {% endif %}
{% include 'partials/related.html.twig' %}
{% endblock %}