Files
Aerbim/templates/pages/p_contacts.html
2023-12-10 18:51:37 +03:00

23 lines
807 B
HTML

{% extends 'tb_base.html' %}
{% load static %}
{% load i18n %}
{% block CONTENT %}
<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 %}