You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.8 KiB
95 lines
2.8 KiB
{% extends 'client/blank.html' %}
|
|
|
|
{% load static %}
|
|
{% load i18n %}
|
|
{% load template_filters %}
|
|
|
|
|
|
{% block main_part %}
|
|
<section class="layout main-part">
|
|
<div class="layout-wrap">
|
|
<aside>
|
|
<div class="sbg"></div>
|
|
{% include 'menu.html' %}
|
|
<hr/>
|
|
|
|
{% include 'client/includes/feedback.html' %}
|
|
<hr />
|
|
|
|
{% include 'client/includes/online_consult.html' %}
|
|
|
|
{% include 'client/includes/banners/aside_1.html' %}
|
|
|
|
{% include 'client/includes/services.html' %}
|
|
<hr />
|
|
|
|
{% include 'client/includes/announces.html' %}
|
|
|
|
{% include 'client/includes/side_confs.html' %}
|
|
|
|
<hr />
|
|
{% include 'client/includes/banners/aside_2.html' %}
|
|
|
|
<hr />
|
|
|
|
<div class="s-news-list">
|
|
{% include 'client/includes/news.html' with news=news_list %}
|
|
</div>
|
|
|
|
{% include 'client/includes/banners/aside_3.html' %}
|
|
|
|
{% block aside_vk %}
|
|
<div class="vk-widget">
|
|
{% include 'client/includes/social_widjet.html' %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% include 'client/includes/banners/aside_4.html' %}
|
|
</aside>
|
|
|
|
<div class="mcl">
|
|
{% with search_form=search_form %}
|
|
{% include 'client/includes/catalog_search.html' %}
|
|
{% endwith %}
|
|
{% block under_search_baner %}
|
|
{% include 'client/includes/banners/search_under.html' %}
|
|
{% endblock %}
|
|
|
|
{% block bread_scrumbs %}
|
|
|
|
{% endblock %}
|
|
|
|
<div class="page-title">
|
|
{% block page_title %}
|
|
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% block page_filter %}
|
|
{% endblock %}
|
|
|
|
{% block page_body %}
|
|
<div class="page-body clearfix">
|
|
{% block content_list %}
|
|
{% endblock %}
|
|
|
|
{% block paginator %}
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block content_footer_banner %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% block seo_text_ %}
|
|
{% if seo_text %}
|
|
{% include 'client/includes/seo_text.html' with object=seo_text %}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|
|
|