Files

38 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2025-03-25 20:32:26 +00:00
<!doctype html>
<html lang="en">
<head>
2026-07-18 20:27:19 +02:00
<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') }}">
2025-03-25 20:32:26 +00:00
</head>
<body>
2026-07-18 20:27:19 +02:00
<header class="site-header">
<a class="brand" href="{{ url_for('flower_vase.index') }}" aria-label="Flowers home">
2026-07-18 22:19:10 +02:00
<img class="brand-logo" src="{{ url_for('flower_vase.static', filename='wwwsuynl.png') }}" width="34" height="34" alt="">
2026-07-18 20:27:19 +02:00
<span>Flowers</span>
</a>
2026-07-18 21:16:07 +02:00
<nav class="nav-actions" aria-label="Bouquet actions">
2026-07-18 20:27:19 +02:00
{% 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>
2026-07-18 21:16:07 +02:00
<footer>Private by design. Stored in your existing Flowers bouquet.</footer>
2025-03-25 20:32:26 +00:00
</body>
</html>