Files
Hellas-Wawi/wawi/templates/base.html
Bjoern Welker e7ca524fda chore: update file permissions and binary files
Minor updates to file permissions and binary assets.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-10 13:13:32 +01:00

38 lines
1.6 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>{{ title or "Hellas Artikelverwaltung" }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
</head>
<body>
<header>
<div class="wrap top">
<div class="brand">
<img src="{{ url_for('static', filename='logo.png') }}" alt="Hellas 1899 Logo" />
<div>
<h1>Hellas 1899 · Artikelverwaltung</h1>
<div class="meta">Bestand &amp; Ausbuchungen</div>
</div>
</div>
<nav class="nav">
{% if logged_in %}
<a class="btn icon" href="{{ url_for('bp.index') }}" title="Übersicht" aria-label="Übersicht"><span></span></a>
<a class="btn icon accent" href="{{ url_for('bp.new_item') }}" title="Neuer Artikel" aria-label="Neuer Artikel"><span></span></a>
<a class="btn icon" href="{{ url_for('bp.users') }}" title="Benutzer" aria-label="Benutzer"><span>☺︎</span></a>
<a class="btn icon" href="{{ url_for('bp.orders') }}" title="Bestellungen" aria-label="Bestellungen"><span>☑︎</span></a>
<a class="btn icon ghost" href="{{ url_for('bp.logout') }}" title="Logout" aria-label="Logout"><span></span></a>
{% endif %}
</nav>
</div>
</header>
<main>
<div class="wrap">
{% block content %}{% endblock %}
</div>
</main>
<a href="#" class="to-top" title="Nach oben" aria-label="Nach oben"></a>
</body>
</html>