[ui] footer links

This commit is contained in:
max/sooulix 2024-08-15 18:05:53 +02:00
parent 4bf887c46e
commit 991ec39404
2 changed files with 79 additions and 77 deletions

View File

@ -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 }}&nbsp;&#8226;&nbsp;{% endif %}</span>Powered by
<a class="underline" href="https://getpelican.com/">Pelican</a>&nbsp;&
<a class="underline" href="https://github.com/aleylara/Papyrus">&nbsp;Papyrus</a>
</div>
</footer> </footer>
{% include 'analytics.html' %} {% include 'analytics.html' %}

View File

@ -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>