{% extends "base.html" %} {% block title %}{{ 'brand'|t(lang) }}{% endblock %} {% block nav %} {% endblock %} {% block content %}

📮 {{ 'index.title'|t(lang) }}

{{ 'index.subtitle'|t(lang) }}

{% set visible = [] %} {% for pc in postcards %} {% if pc.image_front %} {% if visible.append(pc) %}{% endif %} {% endif %} {% endfor %} {% if visible|length > 0 or has_more %}
{% for pc in visible %}
{% if pc.country_from and pc.country_to %}{{ pc.country_from|flag }} {{ pc.country_from }} → {{ pc.country_to|flag }} {{ pc.country_to }} {% elif pc.country_to %}{{ pc.country_to|flag }} {{ pc.country_to }} {% endif %}
{% endfor %}
{% if has_more %}
{% endif %} {% else %}

{{ 'index.empty'|t(lang) }}

{% endif %} {% endblock %}