Files
Aerbim/templates/pages/p_contacts.html
2023-12-10 14:17:35 +03:00

17 lines
596 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>
{% endblock %}