summaryrefslogtreecommitdiff
path: root/htdocs/template/article.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'htdocs/template/article.tmpl')
-rw-r--r--htdocs/template/article.tmpl15
1 files changed, 15 insertions, 0 deletions
diff --git a/htdocs/template/article.tmpl b/htdocs/template/article.tmpl
new file mode 100644
index 0000000..e461ce2
--- /dev/null
+++ b/htdocs/template/article.tmpl
@@ -0,0 +1,15 @@
+{{/* This file is combined with the root.tmpl to display a single article. */}}
+
+{{define "title"}}{{.Doc.Title}}{{end}}
+
+{{define "content"}}
+ {{with .Doc}}
+ {{template "doc" .}}
+ {{with .Related}}
+ <h5>Related articles</h5>
+ <ul>
+ {{range .}}<li><a href="{{.Path}}">{{.Title}}</a></li>{{end}}
+ </ul>
+ {{end}}
+ {{end}}
+{{end}}