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.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/layouts/services/list.html b/layouts/services/list.html
new file mode 100644
index 0000000..94c750b
--- /dev/null
+++ b/layouts/services/list.html
@@ -0,0 +1,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 }}