introduce options for category, tag and archives links on menu

This commit is contained in:
lynix 2015-04-10 21:21:20 +02:00
commit 8e1e53af31
2 changed files with 15 additions and 0 deletions

View file

@ -25,6 +25,18 @@
{% endif %}
{% endfor %}
{% endif %}
{% if CATEGORIES_ON_MENU %}
<li><a class="nodec" href="{{ SITEURL }}/categories.html">Categories</a></li>
<li class="muted">|</li>
{% endif %}
{% if TAGS_ON_MENU %}
<li><a class="nodec" href="{{ SITEURL }}/tags.html">Tags</a></li>
<li class="muted">|</li>
{% endif %}
{% if ARCHIVES_ON_MENU %}
<li><a class="nodec" href="{{ SITEURL }}/archives.html">Archives</a></li>
<li class="muted">|</li>
{% endif %}
{% if EMAIL_ADDRESS %}
<li><a class="nodec icon-mail-alt" href="mailto:{{ EMAIL_ADDRESS }}"></a></li>
{% endif %}