2018-12-06 17:54:16 +00:00
|
|
|
@use templates::{base, partials::post_card};
|
|
|
|
@use template_utils::*;
|
|
|
|
@use plume_models::posts::Post;
|
|
|
|
|
|
|
|
@(ctx: BaseContext, query_str: &str, articles: Vec<Post>, page: i32, n_pages: i32)
|
|
|
|
|
2019-02-02 14:23:50 +00:00
|
|
|
@:base(ctx, i18n!(ctx.1, "Search result for \"{0}\""; query_str), {}, {}, {
|
2018-12-06 17:54:16 +00:00
|
|
|
<h1>@i18n!(ctx.1, "Search result")</h1>
|
|
|
|
<p>@query_str</p>
|
|
|
|
|
|
|
|
@if articles.is_empty() {
|
|
|
|
<section>
|
|
|
|
@if page == 1 {
|
2019-01-28 12:12:56 +00:00
|
|
|
<h2>@i18n!(ctx.1, "No result for your query")</h2>
|
2018-12-06 17:54:16 +00:00
|
|
|
} else {
|
2019-03-29 19:12:21 +00:00
|
|
|
<h2>@i18n!(ctx.1, "No more results for your query")</h2>
|
2018-12-06 17:54:16 +00:00
|
|
|
}
|
|
|
|
</section>
|
|
|
|
} else {
|
|
|
|
<div class="cards">
|
|
|
|
@for article in articles {
|
|
|
|
@:post_card(ctx, article)
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
}
|
2018-12-11 23:51:45 +00:00
|
|
|
@paginate_param(ctx.1, page, n_pages, Some(format!("q={}", encode_query_param(query_str))))
|
2018-12-06 17:54:16 +00:00
|
|
|
})
|