Added an option to add topics to the footer
This commit is contained in:
parent
6229c359cc
commit
68edcb5f40
1 changed files with 16 additions and 2 deletions
|
@ -101,7 +101,7 @@
|
|||
{% endif %}
|
||||
|
||||
{% if DISPLAY_CATEGORIES_ON_MENU %}
|
||||
<ul></ul>
|
||||
<ul>
|
||||
<li><b>Topics:</b></li>
|
||||
{% for cat, null in categories %}
|
||||
<li><a href="{{ SITEURL }}/{{ cat.url }}" {% if cat==category %} aria-current="page" {% endif %}>{{ cat}}</a></li>
|
||||
|
@ -121,7 +121,21 @@
|
|||
<footer>
|
||||
{% if (page and page.navminimal is defined )%}
|
||||
{% else %}
|
||||
{% if LINKS %}
|
||||
|
||||
{% if DISPLAY_CATEGORIES_ON_FOOTER %}
|
||||
<nav>
|
||||
<ul>
|
||||
<li><b>Topics:</b></li>
|
||||
{% for cat, null in categories %}
|
||||
<li><a href="{{ SITEURL }}/{{ cat.url }}" {% if cat==category %} aria-current="page" {% endif %}>{{ cat}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</nav>
|
||||
{% endif %}
|
||||
|
||||
|
||||
|
||||
{% if LINKS %}
|
||||
<nav>
|
||||
<ul>
|
||||
<li><b>Blogroll:</b></li>
|
||||
|
|
Loading…
Reference in a new issue