{% 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) }}

{% else %}

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

{% endif %}
{% endblock content %}