25 lines
730 B
HTML
25 lines
730 B
HTML
<!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>
|
|
{% include 'menu.html' %}
|
|
<h1>BirdQuizz</h1>
|
|
{% if username is defined %}
|
|
<p>{{ _('Welcome') }} <span class="username">{{ username }}</span></p>
|
|
{% endif %}
|
|
</header>
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
<footer>
|
|
© 2022 - Samuel ORTION
|
|
</footer>
|
|
</body>
|
|
</html> |