mirror of
https://github.com/nairobilug/pelican-alchemy.git
synced 2024-12-30 12:15:06 +01:00
introduce options for category, tag and archives links on menu
This commit is contained in:
parent
bd337dffaa
commit
8e1e53af31
2 changed files with 15 additions and 0 deletions
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue