By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 user-profile-overview.html

View raw Download
text/plain • 504 B
ASCII text
        
            
1
{% extends "user-profile.html" %}
2
{% block title %}
3
{% trans %}{{ username }}'s profile{% endtrans %}
4
{% endblock %}
5
{% set active_page = "profile" %}
6
7
{% block content %}
8
<x-vbox>
9
{% if user.bio %}
10
<article class="card" style="flex: 0 1 auto;">
11
<section class="card-main">
12
<p>
13
{{ user.bio }}
14
</p>
15
</section>
16
</article>
17
{% endif %}
18
</x-vbox>
19
{% endblock %}