blog/layouts/_default/baseof.html

37 lines
764 B
HTML
Raw Permalink Normal View History

2023-05-29 21:37:18 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
{{ block "title" . }}
{{ .Site.Title }}
{{ end }}
</title>
{{ $css := "style.css" | relURL }}
<link rel="stylesheet" href="{{ $css }}" />
{{ block "header" . }}
{{ end }}
</head>
<body>
<header>
<h1>the kemonomimi blog</h1>
<p class="subtitle">
nya~! we are gay and proud of it!
</p>
<ul id="menubar">
<li><a href="/">Home</a></li>
<li><a href="/yukijoou">Yuki's blog</a></li>
</ul>
</header>
<main>
{{ block "main" . }}
{{ end }}
</main>
<footer>
<p>&copy; Copyright 2023 - the gay people in your computer</p>
</footer>
</body>
</html>