Files
dd-weekend/layouts/_default/single.html
2020-02-12 10:58:09 +01:00

15 lines
373 B
HTML

<!DOCTYPE html>
<html lang="de">
{{ partial "head.html" . }}
<body {{ if .Params.ShowHero }}class="hero"{{ end }}>
{{ partial "navigation.html" . }}
{{ if .Params.ShowHero }}
{{ partial "hero.html" . }}
{{ end }}
<div id="content">
<h1>{{ .Title }}</h1>
{{ .Content }}
</div>
{{ partial "footer.html" . }}
</body>
</html>