ariadne.space/layouts/_default/baseof.html

20 lines
382 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ block "title" . }}
{{ .Site.Title }}
{{ end }}</title>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<nav id="sidebar">
{{ partial "sidebar.html" . }}
</nav>
<main aria-role="main">
{{ block "main" . }}
{{ end }}
</main>
</body>
</html>