{% extends "base.html" %} {% block content %}

{{ site_display_name() }}

{{ site_tagline() }}

{% if categories %}
{{ t_safe(translations, 'home.categories.all') }} {% for category in categories %} {{ category.name }} {% endfor %}
{% endif %} {% if posts %}
{% for post in posts %}
{% set thumb_url = post.hero_image_url or post.image_url %} {% if thumb_url %} {% endif %}
{% if post.category %} {{ post.category }} {% endif %} {% if post.published_at %} {{ post.published_at.strftime("%d.%m.%Y") }} {% endif %} {% if post.draft %} Draft {% endif %}

{{ post.title }}

{% if post.excerpt %}

{{ post.excerpt }}

{% endif %}
{% endfor %}
{% else %}

{{ t_safe(translations, 'blog.empty.title') }}

{{ t_safe(translations, 'blog.empty.description') }}

{{ t_safe(translations, 'blog.empty.cta') }}
{% endif %}
{% endblock %}