about summary refs log tree commit diff
path: root/themes/researcher/layouts/_default/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/researcher/layouts/_default/list.html')
-rw-r--r--themes/researcher/layouts/_default/list.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/themes/researcher/layouts/_default/list.html b/themes/researcher/layouts/_default/list.html
new file mode 100644
index 0000000..b061a6b
--- /dev/null
+++ b/themes/researcher/layouts/_default/list.html
@@ -0,0 +1,10 @@
+{{ define "main" }}
+<div class="container">
+    <h1>{{ .Title }}</h1>
+    <ul>
+        {{ range .Pages }}
+            <li><a href="{{ .Permalink }}">{{ if not .Params.notshowthedate }} {{ .Date.Format "2006-01-02" }} | {{ end }} {{ .Title }}</a></li>
+	{{ end }}
+    </ul>
+</div>
+{{ end }}