<!DOCTYPE html> <html> <head> {{ partial "head.html" . }} <title>{{ .Title }} | {{ .Site.Title }}</title> </head> <body> {{ partial "navigation.html" . }} <h1>{{ .Title }}</h1> <div style="text-align:center;"> - {{ range .RegularPages.GroupByParam "firstLetter" }} <a href="#{{ .Key }}">{{ .Key }}</a> - {{ end }} </div> {{ .Content }} {{ range .RegularPages.GroupByParam "firstLetter" }} <h2 id="{{ .Key }}">{{ .Key }}</h2> <ul> {{ range .Pages.ByTitle }} <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li> {{ end }} </ul> {{ end }} {{ partial "footer.html" . }} </body> </html>