fix: update sub-products in footer
This commit is contained in:
@@ -34,13 +34,16 @@
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
{% if nav_main_products %}
|
||||
{% if footer_sub_products %}
|
||||
<div class="footer-links-col">
|
||||
<h3 class="footer-heading">Products</h3>
|
||||
<ul class="footer-links" role="list">
|
||||
{% for product in nav_main_products %}
|
||||
<li><a href="{{ product.get_absolute_url }}">{{ product.name }}</a></li>
|
||||
{% for sub in footer_sub_products %}
|
||||
<li><a href="{{ sub.get_absolute_url }}">{{ sub.name }}</a></li>
|
||||
{% endfor %}
|
||||
{% if footer_sub_products_has_more %}
|
||||
<li><a href="/products/radiuma/">more</a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user