Plume/templates/tags/index.rs.html

23 lines
662 B
HTML
Raw Normal View History

@use templates::{base, partials::post_card};
@use template_utils::*;
@use plume_models::posts::Post;
@(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)
})