26 lines
763 B
HTML
26 lines
763 B
HTML
<!DOCTYPE html>
|
|
<html lang='{{ .Site.Language.Lang | default "de" }}'>
|
|
<head>
|
|
<title>{{ block "title" . }}{{ .Site.Title }}{{ with .Title }} | {{ . }}{{ end }}{{ end }}</title>
|
|
|
|
<meta charset="utf-8">
|
|
{{ .Hugo.Generator }}
|
|
|
|
<link href='{{ "css/custom.css" | absURL }}' rel="stylesheet" type="text/css" />
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ block "header" . }} {{ partial "site-header.html" . }} {{ end }}
|
|
{{ block "menu" . }} {{ partial "site-menu.html" . }} {{ end }}
|
|
|
|
<div id="content">
|
|
{{ block "sidebar" . }} {{ partial "site-sidebar.html" . }} {{ end }}
|
|
{{ block "main" . }} {{ end }}
|
|
<div style="clear: both;"></div>
|
|
</div>
|
|
|
|
{{ block "footer" . }} {{ partial "site-footer.html" . }} {{ end }}
|
|
|
|
</body>
|
|
</html>
|