mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-02-19 16:16:17 +00:00
16 lines
601 B
Text
16 lines
601 B
Text
{% macro post_card(article) %}
|
|
{% if article.author.display_name %}
|
|
{% set name = article.author.display_name %}
|
|
{% else %}
|
|
{% set name = article.author.username %}
|
|
{% endif %}
|
|
<div class="card">
|
|
<h3><a href="{{ article.url }}">{{ article.post.title }}</a></h3>
|
|
<main
|
|
<p>{{ article.post.content | striptags | truncate(length=200) }}</p>
|
|
</main>
|
|
<p class="author">
|
|
By <a href="/@/{{ article.author.fqn }}/">{{ name }}</a> ⋅ {{ article.date | date(format="%B %e") }}
|
|
</p>
|
|
</div>
|
|
{% endmacro post_card %}
|