footer.html 749 B

12345678910111213141516
  1. <div class="row">
  2. <ul class="col-sm-6 list-inline">
  3. {% if not HIDE_AUTHORS %}
  4. <li class="list-inline-item"><a href="{{ SITEURL }}/authors.html">Authors</a></li>
  5. {% endif %}
  6. <li class="list-inline-item"><a href="{{ SITEURL }}/archives.html">Archives</a></li>
  7. <li class="list-inline-item"><a href="{{ SITEURL }}/categories.html">Categories</a></li>
  8. {% if tags|length %}
  9. <li class="list-inline-item"><a href="{{ SITEURL }}/tags.html">Tags</a></li>
  10. {% endif %}
  11. </ul>
  12. <p class="col-sm-6 text-sm-right text-muted">
  13. Generated by <a href="https://github.com/getpelican/pelican" target="_blank">Pelican</a>
  14. / <a href="https://github.com/nairobilug/pelican-alchemy" target="_blank">&#x2728;</a>
  15. </p>
  16. </div>