pelican-alchemy/alchemy/templates/include/footer.html
Vedran Miletić ffcbf4168e Do not hardcode paths to Authors, Archives, Categories, Tags
Use AUTHORS_URL, ARCHIVES_URL, CATEGORIES_URL, TAGS_URL instead.
2019-10-21 17:43:40 +03:00

16 lines
769 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_URL }}">Authors</a></li>
{% endif %}
<li class="list-inline-item"><a href="{{ SITEURL }}/{{ ARCHIVES_URL }}">Archives</a></li>
<li class="list-inline-item"><a href="{{ SITEURL }}/{{ CATEGORIES_URL }}">Categories</a></li>
{% if tags|length %}
<li class="list-inline-item"><a href="{{ SITEURL }}/{{ TAGS_URL }}">Tags</a></li>
{% 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>