45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
{%- if theme.based_on == 'Bootstrap 4' or doctype != 'Web Page' -%}
|
|
<footer class="web-footer">
|
|
<section class="footer-links">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="text-left col-sm-6">
|
|
{% if footer_items -%}
|
|
<div class="row">
|
|
{% include "templates/includes/footer/footer_items.html" %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="text-right col-sm-6">
|
|
{% block extension %}
|
|
{% include "templates/includes/footer/footer_extension.html" %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
<div class="mt-5 row footer-bottom-line">
|
|
<div class="text-muted small col-sm-6 col-12">
|
|
{% if copyright %}
|
|
© {{ copyright }}
|
|
{% endif %}
|
|
{% if footer_address %}
|
|
{% if copyright %}<br>{% endif %}
|
|
{{ footer_address }}
|
|
{% endif %}
|
|
</div>
|
|
{# powered #}
|
|
<div class="text-right text-muted small col-sm-6 col-12 footer-powered">
|
|
{% block powered %}
|
|
{% include "templates/includes/footer/footer_powered.html" %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</footer>
|
|
|
|
{%- else -%}
|
|
<footer>
|
|
{{ c('web_blocks', web_blocks=theme.footer) }}
|
|
</footer>
|
|
{%- endif -%}
|