Files
flowers/templates/common.html
T

38 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="dark">
<title>{% block title %}Flowers{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('flower_vase.static', filename='flower.css') }}">
</head>
<body>
<header class="site-header">
<a class="brand" href="{{ url_for('flower_vase.index') }}" aria-label="Flowers home">
<span class="brand-mark" aria-hidden="true"></span>
<span>Flowers</span>
</a>
<nav class="nav-actions" aria-label="Bouquet actions">
{% block menuoptions %}{% endblock %}
</nav>
</header>
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
<div class="notices" aria-live="polite">
{% for category, message in messages %}
<div class="notice notice-{{ category }}">{{ message }}</div>
{% endfor %}
</div>
{% endif %}
{% endwith %}
<main class="page-shell">
{% block content %}{% endblock %}
</main>
<footer>Private by design. Stored in your existing Flowers bouquet.</footer>
</body>
</html>