2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-04-28 05:26:44 +00:00

ul for footer

This commit is contained in:
Matthias Mair 2021-11-09 23:16:18 +01:00
parent 2a264b1979
commit fbfde94138

View File

@ -14,13 +14,13 @@
{% for cat in footer %}
<div class="lg:w-1/4 md:w-1/2 w-full px-4">
<h2 class="footer-categorie title-font">{{ cat.title }}</h2>
<nav class="list-none mb-10">
<nav class="list-none mb-10"><ul>
{% for item in cat.cats %}
<li>
<a href="{% include link.html item=item%}" class="footer-link">{{ item.name }}</a>
</li>
{% endfor %}
</nav>
</ul></nav>
</div>
{% endfor %}