21 lines
415 B
HTML
21 lines
415 B
HTML
|
{{define "head"}}
|
||
|
<title>admin - ari melody 💫</title>
|
||
|
<link rel="shortcut icon" href="/img/favicon.png" type="image/x-icon">
|
||
|
|
||
|
<link rel="stylesheet" href="/style/admin.css">
|
||
|
{{end}}
|
||
|
|
||
|
{{define "content"}}
|
||
|
<main>
|
||
|
<script type="module" src="/script/admin.js" defer></script>
|
||
|
|
||
|
<h1>
|
||
|
# admin panel
|
||
|
</h1>
|
||
|
|
||
|
<p>
|
||
|
bappity boopity
|
||
|
</p>
|
||
|
</main>
|
||
|
{{end}}
|