13 lines
266 B
HTML
13 lines
266 B
HTML
{{ define "main" }}
|
|
{{ partial "logo_with_button" . }}
|
|
<section class="wrapper style1 align-left">
|
|
<div class="inner">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ range .Resources.ByType "page" }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
{{ partial "footer" . }}
|
|
{{ end }}
|