2018-05-09 19:53:12 +02:00
|
|
|
{% extends "base" %}
|
2018-05-13 19:19:23 +02:00
|
|
|
{% import "macros" as macros %}
|
2018-05-09 19:53:12 +02:00
|
|
|
|
2018-06-12 22:14:49 +02:00
|
|
|
{% block title %}
|
2018-06-12 14:42:34 +02:00
|
|
|
{% if user.display_name %}
|
|
|
|
{% set name = user.display_name %}
|
2018-06-12 14:17:02 +02:00
|
|
|
{% else %}
|
|
|
|
{% set name = user.username %}
|
|
|
|
{% endif %}
|
2018-06-12 19:05:33 +02:00
|
|
|
|
2018-06-12 14:45:53 +02:00
|
|
|
{{ name }}
|
2018-05-09 19:53:12 +02:00
|
|
|
{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-06-17 19:48:22 +02:00
|
|
|
{% include "users/header" %}
|
2018-05-13 13:53:58 +02:00
|
|
|
|
2018-09-05 17:41:31 +02:00
|
|
|
{% set user_link = ['/@', user.fqn] %}
|
|
|
|
{% set followers_link = ['/@', user.fqn, 'followers'] %}
|
|
|
|
{{ macros::tabs(links=[ user_link | join(sep='/'), followers_link | join(sep='/')], titles=['Articles', 'Followers'], selected=1) }}
|
2018-05-12 18:55:25 +02:00
|
|
|
|
2018-09-05 17:41:31 +02:00
|
|
|
{% if recents | length != 0 %}
|
2018-09-01 22:16:38 +02:00
|
|
|
<h2>
|
|
|
|
{{ "Latest articles" | _ }}
|
|
|
|
<small><a href="/@/{{ user.fqn }}/atom.xml"><i title="Atom feed" class="fa fa-rss"></i></a></small>
|
|
|
|
</h2>
|
2018-05-24 11:49:02 +02:00
|
|
|
<div class="cards">
|
|
|
|
{% for article in recents %}
|
|
|
|
{{ macros::post_card(article=article) }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2018-05-24 11:45:36 +02:00
|
|
|
|
2018-05-24 11:49:02 +02:00
|
|
|
{% if reshares | length != 0 %}
|
2018-08-19 00:52:28 +02:00
|
|
|
<h2>{{ "Recently boosted" | _ }}</h2>
|
2018-05-24 11:49:02 +02:00
|
|
|
<div class="cards">
|
|
|
|
{% for article in reshares %}
|
|
|
|
{{ macros::post_card(article=article) }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2018-05-09 19:53:12 +02:00
|
|
|
{% endblock content %}
|