14 lines
456 B
HTML
14 lines
456 B
HTML
{% extends "tb_base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% if page.url == 'customer_search' %}
|
|
{% include "blocks/static_pages_blocks/b_customer_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 %}
|
|
{% endblock %} |