{% extends "public_base.html" %} {% block title %}{{ _('Contact') }} — {{ SPLENT_APP }}{% endblock %} {% block hero %} {{ render_block('hero', eyebrow=_('Contact'), title=_('Get in touch'), subtitle=_('Send us a message and we will get back to you.')) }} {% endblock %} {% block content %}
{# Flash messages #} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}
{# Captcha widget (cloudflare / recaptcha) — empty when none installed #} {% if captcha_widget is defined %} {{ captcha_script() }} {{ captcha_widget() }} {% endif %}
{% endblock %}