summaryrefslogtreecommitdiff
path: root/layouts/services/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/services/list.html')
-rw-r--r--layouts/services/list.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/services/list.html b/layouts/services/list.html
new file mode 100644
index 0000000..8e78be0
--- /dev/null
+++ b/layouts/services/list.html
@@ -0,0 +1,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 }}