16 lines
418 B
HTML
16 lines
418 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}MERCI -{% endblock %}
|
|
{% block navitems %}
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{{url_for('index')}}">Info</a>
|
|
</li>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Merci !</h1>
|
|
|
|
<p class="text-dark">We are looking forward to seeing you there. The itinerary and addresses are on the <a href="{{url_for('index')}}">info page</a>.</p>
|
|
|
|
{% endblock %}
|