Remove HTML tags from preview

Fixes #24
This commit is contained in:
Bat 2018-05-24 10:55:41 +01:00
parent 963d413847
commit 0b098e539f

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 | escape | 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 %}