Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 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 %}