{% 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 %}{% if config.plugins.wordcount.enabled and grav.user.title == theme_config.owner_title %} | {{ getWordCount(content) }} {{ theme_config.wordcount_title }}{% endif %}

Tagi: {% for tag in page.taxonomy.tag %}{{ tag }} {% endfor %}

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