summaryrefslogtreecommitdiff
path: root/layouts/services/list.html
blob: 94c750bf3118f57e1ced6108098f72de8b1e2856 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<ul>
	{{ range .Paginator.Pages }}
		<li>
			<a href="{{ .Permalink }}">{{ .Title }}</a>
			<small>{{ .Params.location }}</small>
		</li>
	{{ end }}
</ul>
{{ end }}