17 lines
604 B
HTML
17 lines
604 B
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}OCSentinel Debug{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='app.css') }}">
|
|
</head>
|
|
<body>
|
|
<header class="masthead">
|
|
<a href="/" class="brand"><span>OC</span> Sentinel Debug</a>
|
|
<div class="header-links"><a href="{{ url_for('reports') }}">Wochenberichte</a><div class="badge">read-only database console</div></div>
|
|
</header>
|
|
<main>{% block content %}{% endblock %}</main>
|
|
</body>
|
|
</html>
|