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 • 417 B
ASCII text
        
            
1
{% extends "user-profile.html" %}
2
{% set active_page = "profile" %}
3
4
{% block content %}
5
<x-vbox>
6
{% if user.bio %}
7
<article class="card" style="flex: 0 1 auto;">
8
<section class="card-main">
9
<p>
10
{{ user.bio }}
11
</p>
12
</section>
13
</article>
14
{% endif %}
15
</x-vbox>
16
{% endblock %}