192.168.0.2/themes/neff/layouts/_default/baseof.html

37 lines
1.2 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{- block "title" . -}}{{- .Site.Title -}}{{- end -}}</title>
{{ .Hugo.Generator }}
{{- partial "head.html" . -}}
{{- block "head" . -}}{{- end -}}
<body>
<section id="header" class="large">
<div class="container">
{{- partial "header.html" . -}}
</div>
</section>
<div id="page-wrapper">
<section id="content">
{{- block "content" . -}}
<div class="container">
{{- block "main" . -}}{{- end -}}
</div>
{{- end -}}
</section>
<section id="footer">
<div class="container">
{{- partial "footer.html" . -}}
</div>
</section>
</div>
<section id="lightbox-section">
</section>
{{- partial "lightbox.html" . -}}
{{- partial "scripts.html" . -}}
{{- block "scripts" . -}}{{- end -}}
</body>
</html>