Files
tripwithbonus/templates/pages/p_static_page.html
2023-09-19 17:43:18 +03:00

25 lines
854 B
HTML

{% extends "tb_base.html" %}
{% block content %}
{% if page.url == 'for_customers' or page.url == 'for_movers' %}
{% include "blocks/static_pages_blocks/b_mover_search.html" %}
{% endif %}
{% if page.url == 'advertisement' %}
{% include "blocks/static_pages_blocks/b_advertisement.html" %}
{% endif %}
{% if page.url == 'about_service' %}
{% include "blocks/static_pages_blocks/b_about_service.html" %}
{% endif %}
{% if page.url == 'partners' %}
{% include "blocks/static_pages_blocks/b_partners.html" %}
{% endif %}
{% if page.url == 'contacts' %}
{% include "blocks/static_pages_blocks/b_contacts.html" %}
{% endif %}
{% if page.url == 'customer_service' %}
{% include "blocks/static_pages_blocks/b_customer_service.html" %}
{% endif %}
{% endblock %}