Plume/templates/users/details.html.tera

42 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-05-09 17:53:12 +00:00
{% extends "base" %}
{% import "macros" as macros %}
2018-05-09 17:53:12 +00:00
{% block title %}
2018-06-12 12:42:34 +00:00
{% if user.display_name %}
{% set name = user.display_name %}
{% else %}
{% set name = user.username %}
{% endif %}
2018-06-12 12:45:53 +00:00
{{ name }}
2018-05-09 17:53:12 +00:00
{% endblock title %}
{% block content %}
{% include "users/header" %}
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-09-05 15:41:31 +00:00
{% if recents | length != 0 %}
2018-09-01 20:16:38 +00:00
<h2>
{{ "Latest articles" | _ }}
<small><a href="/@/{{ user.fqn }}/atom.xml"><i title="Atom feed" class="fa fa-rss"></i></a></small>
</h2>
<div class="cards">
{% for article in recents %}
{{ macros::post_card(article=article) }}
{% endfor %}
</div>
{% endif %}
2018-05-24 09:45:36 +00:00
{% if reshares | length != 0 %}
<h2>{{ "Recently boosted" | _ }}</h2>
<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 %}