2018-05-09 17:53:12 +00:00
|
|
|
{% extends "base" %}
|
2018-05-13 17:19:23 +00:00
|
|
|
{% import "macros" as macros %}
|
2018-05-09 17:53:12 +00:00
|
|
|
|
2018-06-12 20:14:49 +00:00
|
|
|
{% block title %}
|
2018-06-12 12:42:34 +00:00
|
|
|
{% if user.display_name %}
|
|
|
|
{% set name = user.display_name %}
|
2018-06-12 12:17:02 +00:00
|
|
|
{% else %}
|
|
|
|
{% set name = user.username %}
|
|
|
|
{% endif %}
|
2018-06-12 17:05:33 +00:00
|
|
|
|
2018-06-12 12:45:53 +00:00
|
|
|
{{ name }}
|
2018-05-09 17:53:12 +00:00
|
|
|
{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-06-17 17:48:22 +00:00
|
|
|
{% include "users/header" %}
|
2018-05-13 11:53:58 +00:00
|
|
|
|
2018-05-12 13:31:09 +00:00
|
|
|
<div>
|
2018-06-11 14:05:18 +00:00
|
|
|
{{ user.summary | safe }}
|
2018-05-12 13:31:09 +00:00
|
|
|
</div>
|
2018-05-12 16:55:25 +00:00
|
|
|
|
2018-05-24 09:49:02 +00:00
|
|
|
{% if recents | length != 0 %}
|
2018-06-17 15:26:15 +00:00
|
|
|
<h2>{{ "Latest articles" | _ }}</h2>
|
2018-05-24 09:49:02 +00:00
|
|
|
<div class="cards">
|
|
|
|
{% for article in recents %}
|
|
|
|
{{ macros::post_card(article=article) }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2018-05-24 09:45:36 +00:00
|
|
|
|
2018-05-24 09:49:02 +00:00
|
|
|
{% if reshares | length != 0 %}
|
2018-06-17 15:26:15 +00:00
|
|
|
<h2>{{ "Recently reshared" | _ }}</h2>
|
2018-05-24 09:49:02 +00:00
|
|
|
<div class="cards">
|
|
|
|
{% for article in reshares %}
|
|
|
|
{{ macros::post_card(article=article) }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2018-05-09 17:53:12 +00:00
|
|
|
{% endblock content %}
|