{% load wagtailimages_tags %}
{% image article.image width-1024 class="w-full object-cover object-center h-[27rem]" %}
{{ article.date }}

{{ article.title }}

{% if article.shared_from and article.shared_tags %}
{% include 'styleguide2/includes/molecules/tags/inline_tags.html' with tags=article.shared_tags.all tags_are_selectable=True tag_is_shared=True %}
{% elif article.tags %}
{% include 'styleguide2/includes/molecules/tags/inline_tags.html' with tags=article.tags.all tags_are_selectable=True tag_is_shared=False %}
{% endif %}

{{ article.perex }}

{% include 'styleguide2/includes/atoms/buttons/round_button.html' with url=article.url text='Číst dále' show_arrow_on_hover=True %}