{{ texts[page_id ~ "-page-title"] | default(page_id) }}

{% if texts[page_id ~ "-page-subtitle"] %}

{{ texts[page_id ~ "-page-subtitle"] | safe }}

{% endif %}
{# Each page's content is driven by its FTL translations. #} {# Common structure: description paragraph + sections keyed by page_id prefix. #} {% if texts[page_id ~ "-page-description"] %}

{{ texts[page_id ~ "-page-description"] }}

{% endif %} {# Product pages: show a minimal overview with a "learn more" link pattern. #} {% set products = ["syntaxis", "vapora", "rustelo", "provisioning", "stratumiops", "kogral", "typedialog", "ontoref", "secretumvault"] %} {% if page_id in products %} {% include "partials/product_page.j2" %} {% endif %} {# Auth pages: show the login form fragment inline. #} {% if page_id == "login" %} {% include "partials/login_form.j2" %} {% endif %}