[ui] footer links
This commit is contained in:
parent
4bf887c46e
commit
991ec39404
|
@ -42,11 +42,7 @@
|
||||||
{% block content %} {% endblock %}
|
{% block content %} {% endblock %}
|
||||||
</div>
|
</div>
|
||||||
<footer class="flex w-full text-xs justify-center mt-10 mb-6 text-zinc-500 dark:text-zinc-400">
|
<footer class="flex w-full text-xs justify-center mt-10 mb-6 text-zinc-500 dark:text-zinc-400">
|
||||||
<div class="px-4">
|
{% include './partials/footer_links.html' %}
|
||||||
<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>
|
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
{% include 'analytics.html' %}
|
{% 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