{% extends "district/base.html" %} {% load static wagtailcore_tags wagtailimages_tags wagtailroutablepage_tags %} {% block content %} {% routablepageurl page.root_page.articles_page "tags" as articles_tag_page_url %}

{{ page.title }}

{{ page.date|date:"DATE_FORMAT" }}
{% for tag in page.get_tags %}
{{ tag }}
{% endfor %}
{% if page.image %}
{% image page.image width-2000 as img %} {{ page.title }}
{% endif %}
{% for block in page.content %} {% include_block block %} {% endfor %} {% if page.author_page %} {% include "shared/person_badge_snippet.html" with person_page=page.author_page title="Autor" %} {% endif %}
Sdílení je aktem lásky
{% include "shared/article_shared_link.html" %}
{% if related_articles|length %}

Další podobné články

{% for article in related_articles %} {% include "shared/article_preview.html" %} {% endfor %}
{% include "shared/more_articles_snippet.html" %}
{% endif %} {% endblock %}