summaryrefslogtreecommitdiff
path: root/_includes
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2020-01-13 00:28:50 -0600
committerDanny Holman <dholman@gymli.org>2020-01-13 00:28:50 -0600
commitc7ae950651f4e4be52af5acd62afdd367df5c11f (patch)
tree7598e99039cb403ac37597ec203f42022914ba0d /_includes
parent90c99c7f7726a52333d14a61c3899f1fa6678814 (diff)
Override theme navigation bar
Override the theme navbar with a list of desired pages with correct URL information.
Diffstat (limited to '_includes')
-rw-r--r--_includes/nav.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/_includes/nav.html b/_includes/nav.html
new file mode 100644
index 0000000..baaf857
--- /dev/null
+++ b/_includes/nav.html
@@ -0,0 +1,7 @@
+<div class="navbar">
+ <ul>
+ {%- for item in site.data.pagelist.page_list -%}
+ <li><a href="{{ item.url }}">{{ item.title }}</a></li>
+ {%- endfor -%}
+ </ul>
+</div>