blob: 5d13c7ed352f4bb14af344f5362ae818ee16670f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{{ partial "header" . }}
{{ partial "nav" . }}
{{ partial "jumbotron" (dict "imageUrl" "img/2.jpg" "title" "post title goes here") }}
<ul class="flex-l">
{{ range .Data.Pages }}
<div>
{{ .Render "li"}}
</div>
{{ end }}
</ul>
{{ partial "footer" . }}
|