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-09-05 15:41:31 +00: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 16:55:25 +00:00
|
|
|
|
2018-09-05 15:41:31 +00:00
|
|
|
{% if recents | length != 0 %}
|
2018-09-01 20:16:38 +00:00
|
|
|
<h2>
|
|
|
|
{{ "Latest articles" | _ }}
|
2018-10-31 17:17:13 +00:00
|
|
|
<small><a href="/@/{{ user.fqn }}/atom.xml" title="Atom feed">{{ macros::feather(name="rss") }}</a></small>
|
2018-09-01 20:16:38 +00:00
|
|
|
</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-08-18 22:52:28 +00:00
|
|
|
<h2>{{ "Recently boosted" | _ }}</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 %}
|