24 lines
760 B
HTML
24 lines
760 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}zcbot{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', path='style.css') }}">
|
|
<script src="https://unpkg.com/htmx.org@2.0.4" defer></script>
|
|
<script src="https://unpkg.com/htmx-ext-sse@2.2.2" defer></script>
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<a class="brand" href="/">zcbot</a>
|
|
<nav class="navlinks">
|
|
{% block nav %}{% endblock %}
|
|
</nav>
|
|
<span class="user-tag" title="本地 sentinel user — Phase D 加 OIDC 之前固定">local</span>
|
|
</header>
|
|
<main class="container">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|