14 lines
343 B
HTML
14 lines
343 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">
|
|
{{ .Content }}
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
</html> |