39 lines
1.5 KiB
HTML
39 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
{% block head %}
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='/css/bootstrap.css') }}">
|
|
<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>
|
|
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
|
|
<div class="container">
|
|
<span class="navbar-text">Rémi & Vicky</span>
|
|
<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>
|
|
|
|
<div id="content" class="container mt-2">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<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>
|
|
</div>
|
|
|
|
<script src="{{ url_for('static', filename='/js/bootstrap.bundle.js') }}"></script>
|
|
</body>
|
|
</html>
|