summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/layouts/_default.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/layouts/_default.html b/templates/layouts/_default.html
index 7679382..27cd916 100644
--- a/templates/layouts/_default.html
+++ b/templates/layouts/_default.html
@@ -61,7 +61,11 @@
<nav>
<ul>
<li><a href="/">home</a></li>
- <li><a href="/posts">posts</a></li>
+ {{ range $key, $value := .Collections }}
+ {{if ne $key "all"}}
+ <li><a href="/{{$key}}">{{$key}}</a></li>
+ {{end}}
+ {{end}}
</ul>
</nav>
{{ template "content" . }}