2022-05-22 16:13:14 +00:00
<!doctype html>
< html lang = "fr" >
< head >
{% block head %}
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2022-05-22 17:00:08 +00:00
< link rel = "stylesheet" href = "{{ url_for('static', filename='/css/bootstrap.css') }}" >
2022-05-22 16:13:14 +00:00
< link rel = "stylesheet" href = "{{ url_for('static', filename='/css/bootstrap-icons.css') }}" >
< link rel = "stylesheet" href = "{{ url_for('static', filename='/css/custom.css') }}" >
< title > {% block title %}{% endblock %} Rémi & Vicky< / title >
{% endblock %}
< / head >
2022-05-23 02:51:32 +00:00
2022-05-22 16:13:14 +00:00
< body >
2022-05-23 02:51:32 +00:00
2022-05-22 17:28:00 +00:00
< nav class = "navbar navbar-expand-lg navbar-dark bg-primary" >
2022-05-22 16:13:14 +00:00
< div class = "container" >
2022-05-22 18:16:41 +00:00
< span class = "navbar-text pe-3" > Rémi & Vicky< / span >
2022-05-22 16:13:14 +00:00
< button class = "navbar-toggler" type = "button" data-bs-toggle = "collapse" data-bs-target = "#navbarText" aria-controls = "navbarText" aria-expanded = "false" aria-label = "Toggle navigation" > < span class = "navbar-toggler-icon" > < / span > < / button >
< div class = "collapse navbar-collapse" id = "navbarText" >
< ul class = "navbar-nav mr-auto" >
{% block navitems %}{% endblock %}
< / ul >
< / div >
< / div >
< / nav >
2022-05-23 02:51:32 +00:00
2022-05-22 16:13:14 +00:00
< div id = "content" class = "container mt-2" >
{% block content %}{% endblock %}
< / div >
2022-05-23 02:51:32 +00:00
2022-05-22 18:16:41 +00:00
< div id = "footer" class = "mt-3" >
2022-05-22 17:28:00 +00:00
< div class = "text-center container mb-2 text-dark" > If you encounter any problems, email Rémi at < a href = "mailto:remi@rampin.org" > remi@rampin.org< / a > < / div >
2022-05-22 16:13:14 +00:00
< / div >
2022-05-23 02:51:32 +00:00
2022-05-22 16:13:14 +00:00
< script src = "{{ url_for('static', filename='/js/bootstrap.bundle.js') }}" > < / script >
< / body >
< / html >