80a4dae8bd
- Use `Result` as much as possible - Display errors instead of panicking TODO (maybe in another PR? this one is already quite big): - Find a way to merge Ructe/ErrorPage types, so that we can have routes returning `Result<X, ErrorPage>` instead of panicking when we have an `Error` - Display more details about the error, to make it easier to debug (sorry, this isn't going to be fun to review, the diff is huge, but it is always the same changes)
35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
@use plume_models::posts::Post;
|
|
@use template_utils::*;
|
|
@use routes::*;
|
|
|
|
@(ctx: BaseContext, article: Post)
|
|
|
|
<div class="card h-entry">
|
|
@if article.cover_id.is_some() {
|
|
<div class="cover" style="background-image: url('@Html(article.cover_url(ctx.0).unwrap_or_default())')"></div>
|
|
}
|
|
<h3 class="p-name">
|
|
<a class="u-url" href="@uri!(posts::details: blog = article.get_blog(ctx.0).unwrap().get_fqn(ctx.0), slug = &article.slug, responding_to = _)">
|
|
@article.title
|
|
</a>
|
|
</h3>
|
|
<main>
|
|
<p class="p-summary">@article.subtitle</p>
|
|
</main>
|
|
<p class="author">
|
|
@Html(i18n!(ctx.1, "By {0}"; format!(
|
|
"<a class=\"p-author h-card\" href=\"{}\">{}</a>",
|
|
uri!(user::details: name = article.get_authors(ctx.0).unwrap_or_default()[0].get_fqn(ctx.0)),
|
|
escape(&article.get_authors(ctx.0).unwrap_or_default()[0].name(ctx.0))
|
|
)))
|
|
@if article.published {
|
|
⋅ <span class="dt-published" datetime="@article.creation_date.format("%F %T")">@article.creation_date.format("%B %e, %Y")</span>
|
|
}
|
|
⋅ <a href="@uri!(blogs::details: name = article.get_blog(ctx.0).unwrap().get_fqn(ctx.0), page = _)">@article.get_blog(ctx.0).unwrap().title</a>
|
|
@if !article.published {
|
|
⋅ @i18n!(ctx.1, "Draft")
|
|
}
|
|
</p>
|
|
</div>
|
|
|