BirdQuizz/templates/base.html

24 lines
685 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>
<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>