BirdQuizz/templates/base.html

25 lines
730 B
HTML
Raw Normal View History

2022-05-19 11:07:34 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}BirdQuizz{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles/style.css') }}">
</head>
<body>
<header>
2022-05-26 10:27:26 +02:00
{% include 'menu.html' %}
2022-05-19 11:07:34 +02:00
<h1>BirdQuizz</h1>
{% if username is defined %}
2022-05-26 13:58:46 +02:00
<p>{{ _('Welcome') }} <span class="username">{{ username }}</span></p>
2022-05-19 11:07:34 +02:00
{% endif %}
</header>
<main>
{% block content %}{% endblock %}
</main>
<footer>
© 2022 - Samuel ORTION
</footer>
</body>
</html>