summaryrefslogtreecommitdiff
path: root/layouts/services/list.html
blob: 8e78be03f65f68f8e87b615f49ab5b26f19cdad6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<section class="service">
	<h2>
		{{ .Title }}
		<small><a href="{{ .Params.location }}">{{ .Params.location }}</a></small>
	</h2>
	{{ .Content }}
</section>
{{ end }}
{{ end }}