summaryrefslogtreecommitdiff
path: root/htdocs/template/home.tmpl
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2019-01-20 12:35:37 +0100
committerDimitri Sokolyuk <demon@dim13.org>2019-01-20 12:35:37 +0100
commitf12d854fcf5e46fe526a92a316b2c6ec118fcea3 (patch)
tree284d40c6eb60a5163fee6fc4bb2007937a539a1b /htdocs/template/home.tmpl
parent312ecbfa56c625903f1b1d56408326145b2fce2d (diff)
Replace fcgi with plain http server
Diffstat (limited to 'htdocs/template/home.tmpl')
-rw-r--r--htdocs/template/home.tmpl10
1 files changed, 10 insertions, 0 deletions
diff --git a/htdocs/template/home.tmpl b/htdocs/template/home.tmpl
new file mode 100644
index 0000000..2c622b5
--- /dev/null
+++ b/htdocs/template/home.tmpl
@@ -0,0 +1,10 @@
+{{/* This file is combined with the root.tmpl to display the blog home page. */}}
+
+{{define "title"}}dim13{{end}}
+
+{{define "content"}}
+ {{range .Data}}
+ {{template "doc" .}}
+ {{end}}
+ <p>See the <a href="{{.BasePath}}/index">index</a> for more articles.</p>
+{{end}}