55 lines
1.9 KiB
HTML
55 lines
1.9 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Staff panel</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Barlow:wght@400;500;600&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
<nav class="nav" id="nav" aria-label="Main">
|
|
<a class="brand" href="#overview">
|
|
<svg class="brand-mark" viewBox="0 0 32 32" aria-hidden="true">
|
|
<path d="M16 2 28 7v9c0 7-5 12-12 14C9 28 4 23 4 16V7z" fill="none" stroke="#fe113d" stroke-width="2.5"/>
|
|
<path d="M11 16h10M16 11v10" stroke="#e6e8ee" stroke-width="2.5" stroke-linecap="round"/>
|
|
</svg>
|
|
<span class="brand-name site-name"></span>
|
|
</a>
|
|
|
|
<div class="server-pick" id="server-pick">
|
|
<b>Loading…</b>
|
|
<small> </small>
|
|
</div>
|
|
|
|
<ul id="nav-links"></ul>
|
|
|
|
<a class="public-link" href="/">View the public site</a>
|
|
|
|
<div class="me" id="me">
|
|
<span class="avatar">?</span>
|
|
<div><b> </b><small> </small></div>
|
|
<button class="btn sm ghost" type="button" id="signout">Sign out</button>
|
|
</div>
|
|
</nav>
|
|
|
|
<div>
|
|
<div class="mobile-bar">
|
|
<button class="btn sm ghost" type="button" id="menu-btn" aria-controls="nav" aria-expanded="false">Menu</button>
|
|
<span class="brand-name site-name" style="font-size:19px"></span>
|
|
</div>
|
|
<main id="view" tabindex="-1"></main>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="drawer-root"></div>
|
|
<dialog id="modal"></dialog>
|
|
<div id="toast-root" aria-live="polite"></div>
|
|
|
|
<script src="/static/common.js"></script>
|
|
<script src="/static/admin.js"></script>
|
|
</body>
|
|
</html>
|