Articles listings on blogs and users pages

This commit is contained in:
Bat
2018-05-12 14:31:09 +01:00
parent 397d25e431
commit 6de9d5b82a
7 changed files with 65 additions and 9 deletions
+9
View File
@@ -9,4 +9,13 @@
<div>
{{ user.summary | safe }}
</div>
<h2>Latest articles</h2>
{% for article in recents %}
<div>
<h3><a href="{{ article.url }}">{{ article.post.title }}</a></h3>
<p>{{ article.post.content | escape | truncate(length=200) }}…</p>
<p>By {{ article.author.display_name }} ⋅ {{ article.date | date(format="%B %e") }}</p>
</div>
{% endfor %}
{% endblock content %}