{% extends 'partials/base.html.twig' %} {% set hero_image = page.media.images|first %} {% block content %}

{{ page.title }}

{{ page.date|date("d.m.Y H:i") }}{% if config.plugins.readingtime.enabled %} | {{ page.content|readingtime }}{% endif %}

{{ theme_config.blog.tags_title|raw }}: {% for tag in page.taxonomy.tag %}{{ tag }} {% endfor %}

{% if page.taxonomy.series %}

{{ theme_config.blog.series_title|raw }}: {% for series in page.taxonomy.series %}{{ series }} {% endfor %} {% endif %}

{{ page.content | raw }}
{% if not page.header.disableSharing %} {% include 'partials/share.html.twig' %} {% endif %} {% include 'partials/comments.html.twig' %} {% endblock %}