This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues/pull-requests.
flatfilecms/flatfilecms/templates/footer.jinja2

9 lines
291 B
Django/Jinja

<nav class="nav justify-content-left container py-3 footer-menu">
{%- for item in menu recursive %}
{% if item.href -%}
<a href="{{item.href|e}}" class="nav-link text-light py-0">{{item.title}}</a>
{%- endif -%}
{{ loop(item.children) }}
{%- endfor %}
</nav>