24 lines
858 B
HTML
24 lines
858 B
HTML
{% extends 'tb_base.html' %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
{% block CONTENT %}
|
|
{% include "blocks/b_sections_buttons.html" %}
|
|
<div {% include "block_settings/blocks_settings.html" %}>
|
|
<div class="cut-width">
|
|
<div class="b_contacts">
|
|
<div class="title_of_the_page_contacts">{% translate 'Контакты' %}</div>
|
|
<div class="cards_contacts_container">
|
|
{% for office in offices %}
|
|
{% include "widgets/w_card_office.html" %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% include "pages/content/c_blocks_constructor.html" %}
|
|
|
|
{% if page.plugin_presentation.all %}
|
|
{% include 'blocks/b_3d_s_d.html' with block=page.plugin_presentation.all.0 %}
|
|
{% endif %}
|
|
{% endblock %} |