74 lines
2.0 KiB
HTML
74 lines
2.0 KiB
HTML
|
|
[viewBag]
|
|||
|
|
|
|||
|
|
[blogPosts turkmenistan]
|
|||
|
|
pageNumber = "{{ :page }}"
|
|||
|
|
categoryFilter = "turkmenistan"
|
|||
|
|
postsPerPage = 6
|
|||
|
|
noPostsMessage = "No posts found"
|
|||
|
|
sortOrder = "published_at desc"
|
|||
|
|
categoryPage = 404
|
|||
|
|
postPage = 404
|
|||
|
|
|
|||
|
|
[blogPosts world]
|
|||
|
|
pageNumber = "{{ :page }}"
|
|||
|
|
categoryFilter = "world"
|
|||
|
|
postsPerPage = 6
|
|||
|
|
noPostsMessage = "No posts found"
|
|||
|
|
sortOrder = "published_at desc"
|
|||
|
|
categoryPage = 404
|
|||
|
|
postPage = 404
|
|||
|
|
==
|
|||
|
|
{% set turkmenPosts = turkmenistan.posts %}
|
|||
|
|
{% set worldPosts = world.posts %}
|
|||
|
|
|
|||
|
|
|
|||
|
|
<div class="container aside-container">
|
|||
|
|
<aside class="aside">
|
|||
|
|
<div class="aside-content-wrapper">
|
|||
|
|
<h2 class="aside-title">Последние новости</h2>
|
|||
|
|
<div class="aside-btns">
|
|||
|
|
<button type="button" class="news-local news-btn active">В Туркменистане</button>
|
|||
|
|
<button type="button" class="news-global news-btn">В Мире</button>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="aside-content local active">
|
|||
|
|
|
|||
|
|
{% for post in turkmenPosts %}
|
|||
|
|
|
|||
|
|
{% partial 'newHome/right-sidebar-post-item' post=post %}
|
|||
|
|
|
|||
|
|
{% endfor %}
|
|||
|
|
|
|||
|
|
<a href="#" class="aside-content-more">
|
|||
|
|
<span>Читать больше</span>
|
|||
|
|
<div class="aside-content-more-img">
|
|||
|
|
<img src="{{'assets/new/icons/arrow-right-black.svg'|theme}}" alt="" />
|
|||
|
|
</div>
|
|||
|
|
</a>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="aside-content global">
|
|||
|
|
|
|||
|
|
|
|||
|
|
{% for post in worldPosts %}
|
|||
|
|
|
|||
|
|
{% partial 'newHome/right-sidebar-post-item' post=post %}
|
|||
|
|
|
|||
|
|
{% endfor %}
|
|||
|
|
|
|||
|
|
|
|||
|
|
<a href="#" class="aside-content-more">
|
|||
|
|
<span>Читать больше</span>
|
|||
|
|
<div class="aside-content-more-img">
|
|||
|
|
<img src="{{'assets/new/icons/arrow-right-black.svg'|theme}}" alt="" />
|
|||
|
|
</div>
|
|||
|
|
</a>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
<div class="aside-ad-wrapper">
|
|||
|
|
<a href="#">
|
|||
|
|
<img src="{{'assets/new/images/aside-ad.jpg'|theme}}" alt="" />
|
|||
|
|
</a>
|
|||
|
|
</div>
|
|||
|
|
</aside>
|
|||
|
|
</div>
|