summaryrefslogtreecommitdiff
path: root/layouts/posts/list.gmi
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/posts/list.gmi')
-rw-r--r--layouts/posts/list.gmi20
1 files changed, 20 insertions, 0 deletions
diff --git a/layouts/posts/list.gmi b/layouts/posts/list.gmi
new file mode 100644
index 0000000..40a0ba5
--- /dev/null
+++ b/layouts/posts/list.gmi
@@ -0,0 +1,20 @@
+{{- define "main" }}
+<h1>{{ .Title }}</h1>
+{{ .Content }}
+{{- range .Sections }}
+ <h2>{{ .Title }}</h2>
+ <ul>
+ {{- range .Pages }}
+ <li>
+ <a href="{{ .Permalink }}">{{ .Title }}</a>
+ <small>
+ {{ .Date | dateFormat "2006-01-02" }}
+ {{- range .Params.tags }}
+ <a href="/tags/{{ . | lower }}">#{{ . }}</a>
+ {{- end }}
+ </small>
+ </li>
+ {{- end }}
+ </ul>
+{{- end }}
+{{- end }}