b4e4b497ee
Use uri! to generate links instead of hardcoded urls Fix #110 Fix invalid links needing to be POST forms Translate login message for boost and like directly from template Put js for search in its own file
33 lines
1.2 KiB
HTML
33 lines
1.2 KiB
HTML
@use plume_models::posts::Post;
|
|
@use templates::{base, partials::post_card};
|
|
@use template_utils::*;
|
|
@use routes::*;
|
|
|
|
@(ctx: BaseContext, articles: Vec<Post>, page: i32, n_pages: i32)
|
|
|
|
@:base(ctx, "All the articles of the Fediverse", {}, {}, {
|
|
<h1>@i18n!(ctx.1, "All the articles of the Fediverse")</h1>
|
|
|
|
@if let Some(_) = ctx.2 {
|
|
@tabs(&[
|
|
(&uri!(instance::index).to_string(), i18n!(ctx.1, "Latest articles"), false),
|
|
(&uri!(instance::feed).to_string(), i18n!(ctx.1, "Your feed"), false),
|
|
(&uri!(instance::federated).to_string(), i18n!(ctx.1, "Federated feed"), true),
|
|
(&uri!(instance::local).to_string(), i18n!(ctx.1, "Local feed"), false),
|
|
])
|
|
} else {
|
|
@tabs(&[
|
|
(&uri!(instance::index).to_string(), i18n!(ctx.1, "Latest articles"), false),
|
|
(&uri!(instance::federated).to_string(), i18n!(ctx.1, "Federated feed"), true),
|
|
(&uri!(instance::local).to_string(), i18n!(ctx.1, "Local feed"), false),
|
|
])
|
|
}
|
|
|
|
<div class="cards">
|
|
@for article in articles {
|
|
@:post_card(ctx, article)
|
|
}
|
|
</div>
|
|
@paginate(ctx.1, page, n_pages)
|
|
})
|