Tera already adds "…"

This commit is contained in:
Bat 2018-05-24 11:43:16 +01:00
parent 93eb89bc77
commit ef815a436b
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{% macro post_card(article) %}
<div class="card">
<h3><a href="{{ article.url }}">{{ article.post.title }}</a></h3>
<main><p>{{ article.post.content | striptags | truncate(length=200) }}</p></main>
<main><p>{{ article.post.content | striptags | truncate(length=200) }}</p></main>
<p>By <a href="/@/{{ article.author.fqn }}/">{{ article.author.display_name }}</a> ⋅ {{ article.date | date(format="%B %e") }}</p>
</div>
{% endmacro post_card %}