Plume/templates/users/details.tera

22 lines
543 B
Plaintext
Raw Normal View History

2018-05-09 19:53:12 +02:00
{% extends "base" %}
{% block title %}
{{ user.display_name }}
{% endblock title %}
{% block content %}
<h1>{{ user.display_name }}</h1>
<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 %}
2018-05-09 19:53:12 +02:00
{% endblock content %}