- Split footer in files - Footer grouped links styling - Put footer logo and extension in one row - Delete unused footer_items.html - Uncheck Right when adding Footer Items in Website Settings
12 lines
377 B
HTML
12 lines
377 B
HTML
<footer class="web-footer">
|
|
<div class="container">
|
|
{% include "templates/includes/footer/footer_logo_extension.html" %}
|
|
|
|
{% if footer_items -%}
|
|
{% include "templates/includes/footer/footer_grouped_links.html" %}
|
|
{% endif %}
|
|
|
|
{% include "templates/includes/footer/footer_links.html" %}
|
|
{% include "templates/includes/footer/footer_info.html" %}
|
|
</div>
|
|
</footer>
|