{% extends "base.html" %} {% import "macros/ui.html" as ui %} {# Static info pages (contact / sitemap / terms / about / stores / shipping). One template switches title + body on the `page` slug passed by controllers/pages.rs. Titles reuse the existing top-/footer- i18n keys. #} {% block title %}{{ ui::page_title(page=page, lang=lang | default(value='sk')) }}{% endblock title %} {% block breadcrumbs %} {% set L = lang | default(value='sk') %} {% endblock breadcrumbs %} {% block content %} {% set L = lang | default(value='sk') %} {% set title = ui::page_title(page=page, lang=L) %}

{{ title }}

{% if page == "contact" %}

{{ t(key="page-contact-intro", lang=L) }}

{{ t(key="top-contact", lang=L) }}
{{ t(key="hotline", lang=L) }}
{{ t(key="footer-hours", lang=L) }}
{{ t(key="footer-hours", lang=L) }}
{% elif page == "sitemap" %}

{{ t(key="page-sitemap-intro", lang=L) }}

{% elif page == "stores" %} {# Production facility (not a retail store): intro, Google map on top, then a small facility photo next to the address card. #}

{{ t(key="page-stores-intro", lang=L) }}

{# Google Map of the production facility. Embedded via the keyless Maps embed (centered on the geocoded coords); a static PNG would need a Maps Static API key. The header links out to the full map. #}

{{ t(key="page-stores-map", lang=L) }}

{{ t(key="page-stores-map-open", lang=L) }}
{# Small facility photo next to the address. #}
{{ t(key='home-stores-photo', lang=L) }}
{{ t(key="page-stores-address-label", lang=L) }}
{{ t(key="page-stores-facility", lang=L) }}
{{ t(key="page-stores-address", lang=L) }}
{% else %}

{{ t(key="page-coming-soon", lang=L) }}

{% endif %}
{% endblock content %}