pelican-alchemy/alchemy/templates/include/footer.html
Neil Williams 95bf450b8b Allow hiding of additional items
HIDE_AUTHORS is already supported, extend to support hiding
archives, categories and the complete article header banner line.

Signed-off-by: Neil Williams <neil.williams@linaro.org>
2018-09-10 10:53:58 +01:00

20 lines
845 B
HTML

<div class="row">
<ul class="col-sm-6 list-inline">
{% if not HIDE_AUTHORS %}
<li class="list-inline-item"><a href="{{ SITEURL }}/authors.html">Authors</a></li>
{% endif %}
{% if not HIDE_ARCHIVES %}
<li class="list-inline-item"><a href="{{ SITEURL }}/archives.html">Archives</a></li>
{% endif %}
{% if not HIDE_CATEGORIES %}
<li class="list-inline-item"><a href="{{ SITEURL }}/categories.html">Categories</a></li>
{% if tags|length %}
<li class="list-inline-item"><a href="{{ SITEURL }}/tags.html">Tags</a></li>
{% endif %}
{% endif %}
</ul>
<p class="col-sm-6 text-sm-right text-muted">
Generated by <a href="https://github.com/getpelican/pelican" target="_blank">Pelican</a>
/ <a href="https://github.com/nairobilug/pelican-alchemy" target="_blank">&#x2728;</a>
</p>
</div>