home.html (327B)
1 {{ partial "header.html" . }}
2
3 <header>
4 <h1>{{ .Site.Params.title }}</h1>
5 {{ with .Site.Params.subtitle }}<span class="subtitle">{{.}}</span>{{ end }}
6 </header>
7
8 {{ .Content }}
9
10 <ul>
11 {{ range (first 5 (where .Site.RegularPages "Section" "!=" "") ) }}
12 {{ .Render "li" }}
13 {{ end }}
14 </ul>
15
16 {{ partial "footer.html" . }}