ORIENT/themes/modern2/pages/search.htm

42 lines
1.0 KiB
HTML
Raw Normal View History

2021-05-10 12:01:19 +00:00
title = "Поиск"
url = "/search"
layout = "cms"
2021-11-01 12:34:49 +00:00
meta_title = "Поиск"
meta_description = "Поиск"
2021-05-10 12:01:19 +00:00
is_hidden = 0
2021-11-01 12:34:49 +00:00
robot_index = "noindex"
robot_follow = "nofollow"
2021-05-10 12:01:19 +00:00
[viewBag]
localeTitle[en] = "Search"
2021-11-01 12:34:49 +00:00
localeMeta_title[en] = "Search"
localeMeta_description[en] = "Search"
2021-05-10 12:01:19 +00:00
[blogPosts]
pageNumber = "{{ :page }}"
postsPerPage = 10
noPostsMessage = "No posts found"
sortOrder = "published_at desc"
categoryPage = "category"
postPage = "post"
==
<div class="main__content">
<div class="heading">
<div class="heading__title">
2021-11-01 12:34:49 +00:00
{{'page.search'|_}}
2021-05-10 12:01:19 +00:00
</div>
{% for item in blogPosts.posts %}
{% partial 'post_list_item' post = item %}
{% else %}
<p>No posts found</p>
{% endfor %}
2021-11-01 12:34:49 +00:00
{% partial 'pagination' items = blogPosts.posts filter = ['q',input('q')]%}
2021-05-10 12:01:19 +00:00
</div>
</div>
<div class="main__sidebar">
{% partial 'calendar' %}
{% partial 'tags' %}
</div>
{% put scripts %}
<script src="{{['assets/js/lazy.js','assets/js/main.js']|theme}}"></script>
2021-11-01 12:34:49 +00:00
{% endput %}