28 lines
878 B
HTML
28 lines
878 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 %}Admin{% endblock title %}</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link href="https://cdn.jsdelivr.net/npm/daisyui@4/dist/full.min.css" rel="stylesheet" type="text/css">
|
|
<script src="https://unpkg.com/htmx.org@1.9.12"></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<a href="/admin/dashboard">Dashboard</a>
|
|
<a href="/admin/blog/articles">Blog</a>
|
|
<a href="/admin/about">About</a>
|
|
<a href="/">View site</a>
|
|
<form method="post" action="/admin/logout">
|
|
<button type="submit">Logout</button>
|
|
</form>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
{% block content %}{% endblock content %}
|
|
</main>
|
|
</body>
|
|
</html>
|