about summary refs log tree commit diff
path: root/layouts/_default/list.html
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-11-19T18·36-0300
committerWilliam Carroll <wpcarro@gmail.com>2019-11-19T18·36-0300
commitdbde1a1ef9865dfb180c9e42e1cc696dfd19554c (patch)
treef32056d54e7aa9f52e9ed5376850e524f541254f /layouts/_default/list.html
parent693a189ffaacebd82646f1d03f0577c555f26cb3 (diff)
Hugo theme (#1)
Diffstat (limited to 'layouts/_default/list.html')
-rw-r--r--layouts/_default/list.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100644
index 000000000000..d781ce752a4a
--- /dev/null
+++ b/layouts/_default/list.html
@@ -0,0 +1,7 @@
+{{ define "content" }}
+<section class="mb-24">
+    {{ range site.RegularPages.GroupByDate "2006" -}}
+        {{ partial "posts.html" . }}
+    {{ end }}
+</section>
+{{ end }}