-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Description
[error] Error: ERROR: Expected element start
[error] 20 | </ul>
[error] 21 | {% endif %}
[error] > 22 | </div>
[error] | ^
[error] 23 | {% endfor %}
[error] 24 | </div>
[error] 25 | </div>
[error]
[error] Unexpected closing "div" tag. Seems like your DOM is out of control.
<footer class="footer">
<div class="container">
<div class="row position-absolute w-100 pt-3 pb-3">
{% for item in links %}
<div class="col-md-4 col-lg-4">
{% if item.child %}
<div>{{ t(item.text|upper) }}</div>
<ul class="list-unstyled">
{% for child in item.child %}
<li class="nav-item">
<a class="nav-link {{ child.class }}" href="{{ href(child.link) }}">
{{ t(child.text) }}
</a>
</li>
{% endfor %}
{% else %}
<div>{{ t(item.text) }}</div>
</ul>
{% endif %}
</div>
{% endfor %}
</div>
</div>
</footer>
Metadata
Metadata
Assignees
Labels
No labels