25 lines
No EOL
452 B
HTML
25 lines
No EOL
452 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{partial "head" .}}
|
|
</head>
|
|
<body>
|
|
{{partial "header" .}}
|
|
<main>
|
|
<article>
|
|
{{if .Content}}
|
|
<section>
|
|
{{.Content}}
|
|
</section>
|
|
{{end}}
|
|
{{ if .Pages }}
|
|
{{range .Pages}}
|
|
{{partial "item" .}}
|
|
{{end}}
|
|
{{end}}
|
|
</article>
|
|
</main>
|
|
{{partial "footer" .}}
|
|
</body>
|
|
|
|
</html> |