{% extends "uniweb/base.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% block content %}

{{ page.title }}

{{ page.date|date:"SHORT_DATE_FORMAT" }} {% if page.author %} {% endif %}
{% if page.has_tags %}
{% for tag in page.get_tags %}
{{ tag }}
{% endfor %}
{% endif %}
{% image page.image fill-1200x600 as img %} {{ page.title }}
{% for block in page.content %} {% include_block block with block_id=block.id %} {% endfor %}
{% include "shared/article_shared_link.html" %}
{% if related_articles %}

Další {{ page.articles_page.title }}

{% for article in related_articles %} {% include "styleguide/2.3.x/article_card.html" %} {% endfor %}
{% endif %}
{{ page.articles_page.title }}
{% endblock %}