Plume/templates/tags/index.rs.html
2020-01-21 07:02:03 +01:00

23 lines
676 B
HTML

@use plume_models::posts::Post;
@use crate::templates::{base, partials::post_card};
@use crate::template_utils::*;
@(ctx: BaseContext, tag: String, articles: Vec<Post>, page: i32, n_pages: i32)
@:base(ctx, i18n!(ctx.1, "Articles tagged \"{0}\""; &tag), {}, {}, {
<h1>@i18n!(ctx.1, "Articles tagged \"{0}\""; &tag)</h1>
@if !articles.is_empty() {
<div class="cards">
@for article in articles {
@:post_card(ctx, article)
}
</div>
} else {
<section>
<h2>@i18n!(ctx.1, "There are currently no articles with such a tag")</h2>
</section>
}
@paginate(ctx.1, page, n_pages)
})