summaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2021-12-15 11:54:29 +0100
committerPatrick Spek <p.spek@tyil.nl>2021-12-15 11:54:29 +0100
commite86f65b9dbf82e70bbb5fc5f7f4e73190994b4f7 (patch)
tree77a6e5defb773f2d941f7bed23a31a5ba4c8aaee /layouts/_default/baseof.html
parent5c086bc52fa3a226bcf706b1f420a5d98ea377dd (diff)
Add section for services
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index a3478ab..a88cca2 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -20,7 +20,9 @@
<div class="container">
<nav>
<a href="/" class="brand-name">{{ .Site.Title }}</a>
- <a href="/posts/">Blog</a>
+ {{ range .Site.Sections }}
+ <a href="{{ .Permalink }}">{{ .Title }}</a>
+ {{ end }}
</nav>
</div>
</header>