diff --git a/templates/base.html b/templates/base.html index 4e60f08cbfb3d8d7c38fc6743774e2e2caf97521..42f94110d37347f6a56a4760e44807e6f0a949f4 100644 --- a/templates/base.html +++ b/templates/base.html @@ -32,6 +32,9 @@ <li {%- if output_file == page.url %} class="selected"{% endif %}><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor -%} {% endif -%} + {% for name, uri in MENUITEMS -%} + <li><a href="{{ uri }}">{{ name }}</a></li> + {% endfor -%} <li {%- if output_file == "archives.html" %} class="selected"{% endif %}><a href="{{ SITEURL }}/archives.html">Archives</a></li> </ul>