ORIENT/themes/modern2/partials/newHome/right-sidebar.htm

76 lines
2.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[viewBag]
[blogPosts turkmenistan]
pageNumber = "{{ :page }}"
typePost = "turkmenistan"
postsPerPage = 6
noPostsMessage = "No posts found"
sortOrder = "published_at desc"
categoryPage = 404
postPage = 404
exceptPost = "{{ :id }}"
[blogPosts world]
pageNumber = "{{ :page }}"
typePost = "world"
postsPerPage = 6
noPostsMessage = "No posts found"
sortOrder = "published_at desc"
categoryPage = 404
postPage = 404
exceptPost = "{{ :id }}"
==
{% set turkmenPosts = turkmenistan.posts %}
{% set worldPosts = world.posts %}
<div class="container aside-container">
<aside class="aside {{ class }}">
<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="/new/typePost/turkmenistan" 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="/new/typePost/world" 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>