28 lines
624 B
HTML
28 lines
624 B
HTML
<!DOCTYPE html>
|
|
{{ with .Site.LanguageCode }}<html lang="{{ . }}">{{ else }}<html>{{ end }}
|
|
<head>
|
|
{{- partial "head.html" . -}}
|
|
{{- partial "custom-head.html" . -}}
|
|
</head>
|
|
<body>
|
|
{{- partial "prepend-body.html" . -}}
|
|
<div class="container">
|
|
{{- partial "notification.html" . -}}
|
|
{{- partial "site-header.html" . -}}
|
|
{{- partial "global-menu.html" . -}}
|
|
<div class="content-container">
|
|
<main>
|
|
{{- block "main" . -}}{{- end -}}
|
|
<footer>
|
|
{{- partial "content-footer.html" . -}}
|
|
{{- partial "powered.html" . -}}
|
|
</footer>
|
|
</main>
|
|
|
|
{{- partial "sidebar.html" . -}}
|
|
</div>
|
|
{{- partial "footer.html" . -}}
|
|
</div>
|
|
</body>
|
|
</html>
|