This repository has been archived on 2024-03-29. You can view files and clone it, but cannot push or open issues or pull requests.
services-panel/layouts/_default/baseof.html

28 lines
854 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{{ $style := resources.Get "sass/main.scss" | resources.ToCSS | resources.Minify }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<title>{{ .Site.Title }}</title>
</head>
<body>
<header>
<div class="title">
<h1 class="cli">
<span class="decoration"><span class="pink">=</span><span class="yellow">=</span><span class="cyan">=</span>>></span>&nbsp;{{ .Site.Title }}
<span class="blink">&block;</span><span class="hint">~~~nyaa</span>
</h1>
<p class="subtitle">{{ .Site.Params.description }} </p>
</div>
</header>
<main>
{{ block "main" . }}
{{ end }}
</main>
</body>
</html>