2024-03-01 17:47:03 +03:00
|
|
|
<?php if (!is_front_page()) : ?>
|
|
|
|
|
<div class="menu-vertical desktop">
|
|
|
|
|
<div class="menu-vertical__inner">
|
|
|
|
|
<?php get_template_part('partials/category-menu-for-category'); ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
<?php if (is_active_sidebar('left-sidebar')) : ?>
|
|
|
|
|
<?php dynamic_sidebar('left-sidebar'); ?>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php get_template_part('partials/latest-interview-post'); ?>
|
|
|
|
|
|
|
|
|
|
<?php if (is_front_page()) : ?>
|
|
|
|
|
<div class="most-read mobile">
|
|
|
|
|
<div class="most-read__inner">
|
|
|
|
|
<p class="most-read__title subtitle-20">Самое читаемое</p>
|
|
|
|
|
<div class="most-read__links">
|
|
|
|
|
<?php get_template_part('partials/most-read-posts'); ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-03-12 09:16:19 +03:00
|
|
|
<div class="banner-left desktop">
|
|
|
|
|
<?php if (function_exists('banners_conf_display')) banners_conf_display('left_sidebar_banner_desktop_1'); ?>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="banner-left mobile">
|
|
|
|
|
<?php if (function_exists('banners_conf_display')) banners_conf_display('left_sidebar_banner_mobile_1'); ?>
|
|
|
|
|
</div>
|
2024-03-01 17:47:03 +03:00
|
|
|
<?php endif; ?>
|