Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
29 lines
731 B
HTML
29 lines
731 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}WireGuard Admin{% endblock %}</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<span class="brand">WireGuard Admin</span>
|
|
<a href="/">Dashboard</a>
|
|
<a href="/peers">Peers</a>
|
|
<a href="/settings">Settings</a>
|
|
<form method="post" action="/logout" class="inline">
|
|
<button type="submit" class="link">Logout</button>
|
|
</form>
|
|
</nav>
|
|
<main>
|
|
<div class="breadcrumbs">
|
|
<a href="/">Home</a>
|
|
{% block breadcrumbs %}{% endblock %}
|
|
</div>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|