2018-12-06 18:54:16 +01:00
|
|
|
@use plume_models::posts::Post;
|
2018-12-07 12:05:01 +01:00
|
|
|
@use template_utils::*;
|
|
|
|
@use routes::*;
|
2018-12-06 18:54:16 +01:00
|
|
|
|
|
|
|
@(ctx: BaseContext, article: Post)
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
@if article.cover_id.is_some() {
|
|
|
|
<div class="cover" style="background-image: url('@Html(article.cover_url(ctx.0).unwrap_or_default())')"></div>
|
|
|
|
}
|
2018-12-07 12:05:01 +01:00
|
|
|
<h3><a href="@uri!(posts::details: blog = article.get_blog(ctx.0).get_fqn(ctx.0), slug = &article.slug)">@article.title</a></h3>
|
2018-12-06 18:54:16 +01:00
|
|
|
<main>
|
|
|
|
<p>@article.subtitle</p>
|
|
|
|
</main>
|
|
|
|
<p class="author">
|
|
|
|
@Html(i18n!(ctx.1, "By {0}"; format!(
|
2018-12-07 12:05:01 +01:00
|
|
|
"<a href=\"{}\">{}</a>",
|
|
|
|
uri!(user::details: name = article.get_authors(ctx.0)[0].get_fqn(ctx.0)),
|
2018-12-06 18:54:16 +01:00
|
|
|
escape(&article.get_authors(ctx.0)[0].name(ctx.0))
|
|
|
|
)))
|
|
|
|
@if article.published {
|
|
|
|
⋅ @article.creation_date.format("%B %e, %Y")
|
|
|
|
}
|
2018-12-07 12:05:01 +01:00
|
|
|
⋅ <a href="@uri!(blogs::details: name = article.get_blog(ctx.0).get_fqn(ctx.0))">@article.get_blog(ctx.0).title</a>
|
2018-12-06 18:54:16 +01:00
|
|
|
@if !article.published {
|
|
|
|
⋅ @i18n!(ctx.1, "Draft")
|
|
|
|
}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|