2022-05-22 16:13:14 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block title %}MERCI -{% endblock %}
|
|
|
|
{% block navitems %}
|
|
|
|
<li class="nav-item">
|
2022-05-22 17:28:00 +00:00
|
|
|
<a class="nav-link" href="{{url_for('index')}}">Info</a>
|
2022-05-22 16:13:14 +00:00
|
|
|
</li>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<h1>Merci !</h1>
|
|
|
|
|
2022-05-22 17:28:00 +00:00
|
|
|
<p>We are looking forward to seeing you there. The itinerary and addresses are on the <a href="{{url_for('index')}}">info page</a>.</p>
|
|
|
|
|
2022-05-22 16:13:14 +00:00
|
|
|
{% endblock %}
|