2018-12-06 17:54:16 +00:00
|
|
|
@use plume_models::posts::Post;
|
2018-12-07 11:05:01 +00:00
|
|
|
@use template_utils::*;
|
|
|
|
@use routes::*;
|
2018-12-06 17:54:16 +00:00
|
|
|
|
|
|
|
@(ctx: BaseContext, article: Post)
|
|
|
|
|
2018-12-08 20:52:46 +00:00
|
|
|
<div class="card h-entry">
|
2018-12-06 17:54:16 +00:00
|
|
|
@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-13 21:20:19 +00:00
|
|
|
<h3 class="p-name">
|
2018-12-29 08:36:07 +00:00
|
|
|
<a class="u-url" href="@uri!(posts::details: blog = article.get_blog(ctx.0).unwrap().get_fqn(ctx.0), slug = &article.slug, responding_to = _)">
|
2018-12-13 21:20:19 +00:00
|
|
|
@article.title
|
|
|
|
</a>
|
|
|
|
</h3>
|
2018-12-06 17:54:16 +00:00
|
|
|
<main>
|
2018-12-08 20:52:46 +00:00
|
|
|
<p class="p-summary">@article.subtitle</p>
|
2018-12-06 17:54:16 +00:00
|
|
|
</main>
|
|
|
|
<p class="author">
|
|
|
|
@Html(i18n!(ctx.1, "By {0}"; format!(
|
2018-12-08 20:52:46 +00:00
|
|
|
"<a class=\"p-author h-card\" href=\"{}\">{}</a>",
|
2018-12-29 08:36:07 +00:00
|
|
|
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))
|
2018-12-06 17:54:16 +00:00
|
|
|
)))
|
|
|
|
@if article.published {
|
2018-12-08 20:52:46 +00:00
|
|
|
⋅ <span class="dt-published" datetime="@article.creation_date.format("%F %T")">@article.creation_date.format("%B %e, %Y")</span>
|
2018-12-06 17:54:16 +00:00
|
|
|
}
|
2018-12-29 08:36:07 +00:00
|
|
|
⋅ <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>
|
2018-12-06 17:54:16 +00:00
|
|
|
@if !article.published {
|
|
|
|
⋅ @i18n!(ctx.1, "Draft")
|
|
|
|
}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|