summaryrefslogtreecommitdiffstats
path: root/blog/_includes/menubar.html
diff options
context:
space:
mode:
Diffstat (limited to 'blog/_includes/menubar.html')
-rw-r--r--blog/_includes/menubar.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/blog/_includes/menubar.html b/blog/_includes/menubar.html
new file mode 100644
index 0000000..1242ca8
--- /dev/null
+++ b/blog/_includes/menubar.html
@@ -0,0 +1,7 @@
+<nav class="site-nav">
+ {% for page in site.pages %}
+ {% if page.title and page.hidden != true %}
+ <a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>
+ {% endif %}
+ {% endfor %}
+</nav>