ORIENT/themes/modern2/pages/new/search.htm

43 lines
1012 B
HTML
Raw Normal View History

2022-12-25 12:30:38 +00:00
title = "Поиск"
2022-12-19 09:40:00 +00:00
url = "/new/search"
layout = "new/master-inside"
2022-12-25 12:30:38 +00:00
meta_title = "Поиск"
meta_description = "Поиск"
2022-12-19 09:40:00 +00:00
is_hidden = 0
2022-12-25 12:30:38 +00:00
robot_index = "noindex"
2022-12-19 09:40:00 +00:00
robot_follow = "follow"
[blogPosts]
pageNumber = "{{ :page }}"
postsPerPage = 10
noPostsMessage = "No posts found"
sortOrder = "published_at desc"
categoryPage = "blog/category"
postPage = "blog/post"
==
<!-- HEAD end ======== -->
<main class="rubric-main">
<div class="container">
<div class="rubric-inner">
<div class="trending-head">
<h2>{{'page.search'|_}}</h2>
<span></span>
</div>
<div class="rubric-items">
{% for post in blogPosts.posts %}
{% partial 'new/post_list_item' post = post %}
{% else %}
<p>No posts found</p>
{% endfor %}
</div>
{% partial 'new/pagination' items = blogPosts.posts filter = ['q',input('q')] %}
</div>
</div>
</main>