2018-05-13 19:19:23 +02:00
|
|
|
{% macro post_card(article) %}
|
2018-06-12 14:17:02 +02:00
|
|
|
{% if article.author.display_name %}
|
|
|
|
{% set name = article.author.display_name %}
|
|
|
|
{% else %}
|
|
|
|
{% set name = article.author.username %}
|
|
|
|
{% endif %}
|
2018-05-13 22:33:21 +02:00
|
|
|
<div class="card">
|
2018-05-13 19:19:23 +02:00
|
|
|
<h3><a href="{{ article.url }}">{{ article.post.title }}</a></h3>
|
2018-05-24 12:43:16 +02:00
|
|
|
<main><p>{{ article.post.content | striptags | truncate(length=200) }}</p></main>
|
2018-06-12 14:17:02 +02:00
|
|
|
<p>By <a href="/@/{{ article.author.fqn }}/">{{ name }}</a> ⋅ {{ article.date | date(format="%B %e") }}</p>
|
2018-05-13 19:19:23 +02:00
|
|
|
</div>
|
|
|
|
{% endmacro post_card %}
|