blob: b1a8c33e565d5e9695744daf890e9ee69e433383 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!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>
|