summaryrefslogtreecommitdiffstats
path: root/themes/tozt/layouts/blog/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/tozt/layouts/blog/list.html')
-rw-r--r--themes/tozt/layouts/blog/list.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/tozt/layouts/blog/list.html b/themes/tozt/layouts/blog/list.html
new file mode 100644
index 0000000..9483571
--- /dev/null
+++ b/themes/tozt/layouts/blog/list.html
@@ -0,0 +1,14 @@
+{{ partial "header.html" . }}
+
+{{ .Content }}
+
+<ul>
+ {{ range (where .Data.Pages "Section" "!=" "") }}
+ <li>
+ <span class="date">{{ .Date.Format "2006/01/02" }}</span>
+ <a href="{{ .URL }}">{{ .Title | markdownify }}</a>
+ </li>
+ {{ end }}
+</ul>
+
+{{ partial "footer.html" . }}