144f5966dd
There's a missing space, which probably causes the h-feed not to parse. You can always use http://xray.p3k.io/ to validate the microformats on a page. e.g. http://xray.p3k.io/parse?url=https%3A%2F%2Fbaptiste.gelez.xyz%2F%7E%2FFederationTesting%2Fplume-and-the-indie-web&pretty=true is fine, so that's good! However, the h-feed isn't parsing right - http://xray.p3k.io/parse?expect=feed&url=https%3A%2F%2Fbaptiste.gelez.xyz%2F%40%2F0x1C3B00DA&pretty=true (you can always add 'expect=feed' to the get params if you are really sure it needs to be a feed)
31 lines
1.2 KiB
HTML
31 lines
1.2 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).get_fqn(ctx.0), slug = &article.slug)">@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)[0].get_fqn(ctx.0)),
|
|
escape(&article.get_authors(ctx.0)[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).get_fqn(ctx.0))">@article.get_blog(ctx.0).title</a>
|
|
@if !article.published {
|
|
⋅ @i18n!(ctx.1, "Draft")
|
|
}
|
|
</p>
|
|
</div>
|
|
|