32 lines
870 B
HTML
32 lines
870 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
{{block "head" .}}{{end}}
|
|
|
|
<link rel="stylesheet" href="/admin/static/admin.css">
|
|
<script type="module" src="/script/vendor/htmx.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<img src="/img/favicon.png" alt="" class="icon">
|
|
<a href="/">arimelody.me</a>
|
|
<a href="/admin">home</a>
|
|
<a href="/admin/logout" id="logout">log out</a>
|
|
</nav>
|
|
</header>
|
|
|
|
{{block "content" .}}{{end}}
|
|
|
|
{{template "prideflag"}}
|
|
</body>
|
|
|
|
</html>
|