47 lines
1.1 KiB
HTML
47 lines
1.1 KiB
HTML
[viewBag]
|
|
|
|
[blogPosts]
|
|
pageNumber = "{{ :page }}"
|
|
typePost = "turkmenistan, world"
|
|
postsPerPage = 10
|
|
noPostsMessage = "No posts found"
|
|
sortOrder = "created_at desc"
|
|
categoryPage = 404
|
|
postPage = 404
|
|
|
|
==
|
|
|
|
{% set posts = blogPosts.posts %}
|
|
|
|
|
|
<!-- ASIDE MOBILE ============-->
|
|
<section class="aside-mobile">
|
|
<div class="aside-mobile-out"></div>
|
|
<div class="aside-mobile-inner">
|
|
<h2 class="aside-mobile-header">{{ 'page.latest_news'|_ }}</h2>
|
|
<ul class="aside-mobile-items">
|
|
|
|
|
|
{% for post in posts %}
|
|
|
|
<li>
|
|
<a href="{{'new/newPost'|page({id:post.id,slug:post.slug})}}">
|
|
<div class="time">{{post.published_at|date('H:i')}}</div>
|
|
<p class="content">
|
|
{{ post.title }}
|
|
</p>
|
|
</a>
|
|
</li>
|
|
|
|
{% endfor %}
|
|
<li>
|
|
<a href="/new/posts/news" class="aside-mobile-more">{{'new.read.more'|_}}</a>
|
|
</li>
|
|
</ul>
|
|
<button type="button" class="aside-mobile-open">
|
|
<img src="{{'assets/new/images/down-arrow.png'|theme}}" alt="" />
|
|
</button>
|
|
</div>
|
|
</section>
|
|
<!-- ASIDE MOBILE end ============ -->
|