isbn-sort/isbn_sort/templates/base.html

29 lines
974 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="description" content="{{ self.title() }}" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#eff1f5">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#1e1e2e">
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<header id="page-header">
<h1>📚 ISBN-DB</h1>
{% if g.user %}
<a href="/app/auth/logout"><button>Logout</button></a>
{% endif %}
</header>
<div id="container">
{% for message in get_flashed_messages() %}
<div class="flash">{{ message }}</div>
{% endfor %}
<section id="content">
{% block content %}{% endblock %}
</section>
</div>
</body>
</html>