Files
2026-03-05 21:45:40 +00:00

15 lines
569 B
HTML

{% extends 'base.html' %}
{% block content %}
<section class="hero-banner" aria-label="{{ t('hero_headline') }}" style="--hero-image: url('{{ hero_image_url }}');">
<div class="hero-overlay">
{% if wedding_date %}
<p class="hero-kicker">{{ wedding_date }}</p>
{% endif %}
<h1>{{ welcome_headline or t('hero_headline') }}</h1>
<p>{{ welcome_text or t('hero_text') }}</p>
<a class="btn hero-cta" href="{{ url_for('guest_area') }}">{{ t('to_guest_area') }}</a>
</div>
</section>
<p class="hero-hint-below">{{ welcome_hint }}</p>
{% endblock %}