Files
oc-sentinel/infra/debug-dashboard/templates/base.html
OfficeCom Codex 6ceb29a07b
Some checks failed
OfficeCom Sentinel Client / validate-client (push) Successful in 23s
OfficeCom Sentinel Client / build-client-windows (push) Failing after 18s
Add read-only OCSentinel debug dashboard
2026-07-26 02:59:51 +02:00

17 lines
519 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="badge">read-only database console</div>
</header>
<main>{% block content %}{% endblock %}</main>
</body>
</html>