summaryrefslogtreecommitdiff
path: root/themes/blog.jaseg.de/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/blog.jaseg.de/layouts/index.html')
-rw-r--r--themes/blog.jaseg.de/layouts/index.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/blog.jaseg.de/layouts/index.html b/themes/blog.jaseg.de/layouts/index.html
new file mode 100644
index 0000000..0c885ce
--- /dev/null
+++ b/themes/blog.jaseg.de/layouts/index.html
@@ -0,0 +1,14 @@
+{{ partial "header.html" . }}
+
+<h1>{{ site.Title }}</h1>
+
+<ul>
+ {{ range (where site.RegularPages "Section" "==" "posts") }}
+ <li>
+ <span class="date">{{ .Date.Format "2006/01/02" }}</span>
+ <a href="{{ .URL }}">{{ .Title }}</a>
+ </li>
+ {{ end }}
+</ul>
+
+{{ partial "footer.html" . }}