38 lines
1.6 KiB
HTML
38 lines
1.6 KiB
HTML
<!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 & 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>
|