2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-04-29 14:06:45 +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 %} {% for cat in footer %}
<div class="lg:w-1/4 md:w-1/2 w-full px-4"> <div class="lg:w-1/4 md:w-1/2 w-full px-4">
<h2 class="footer-categorie title-font">{{ cat.title }}</h2> <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 %} {% for item in cat.cats %}
<li> <li>
<a href="{% include link.html item=item%}" class="footer-link">{{ item.name }}</a> <a href="{% include link.html item=item%}" class="footer-link">{{ item.name }}</a>
</li> </li>
{% endfor %} {% endfor %}
</nav> </ul></nav>
</div> </div>
{% endfor %} {% endfor %}