[ui] footer links
This commit is contained in:
parent
4bf887c46e
commit
991ec39404
|
@ -42,11 +42,7 @@
|
|||
{% block content %} {% endblock %}
|
||||
</div>
|
||||
<footer class="flex w-full text-xs justify-center mt-10 mb-6 text-zinc-500 dark:text-zinc-400">
|
||||
<div class="px-4">
|
||||
<span>{% if COPYRIGHT %}{{ COPYRIGHT }} • {% endif %}</span>Powered by
|
||||
<a class="underline" href="https://getpelican.com/">Pelican</a> &
|
||||
<a class="underline" href="https://github.com/aleylara/Papyrus"> Papyrus</a>
|
||||
</div>
|
||||
{% include './partials/footer_links.html' %}
|
||||
</footer>
|
||||
|
||||
{% include 'analytics.html' %}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
<div class="px-4">
|
||||
<h5 class="text-center">Powered by</h5>
|
||||
{% for link_item in LINKS %}
|
||||
<a class="underline me-4" href="{{ link_item[1] }}">{{ link_item[0] }}</a>
|
||||
{% endfor %}
|
||||
</div>
|
Loading…
Reference in New Issue