user-profile-overview.html
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 %}