hugohm/layouts/_default/baseof.html

29 lines
717 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ block "title" . }}
{{ .Site.Title }}
{{ end }}</title>
<link rel="stylesheet" href="/css/base.css">
<link rel="icon" href="/imgs/hm-favicon.png" type="image/png">
</head>
<body>
<header>
<a href="{{ "/" | absURL }}">
<img id="logo" src="/imgs/logo.png" alt="logo">
</a>
{{ .Site.Title }}
{{ partial "breadcrumbs" . }}
</header>
<aside>
{{ block "sidebar_menu" . }}{{ end }}
</aside>
<main>
{{ block "main" . }}{{ end }}
</main>
</body>
</html>