{% import "components/home.html" as home with context %} {% extends "layout/basic.html" %} {% block content %} {{ set(UiContext, 'udoc', udoc) }}
  • {{ _('Bio') }}

    {% if not udoc.bio %} {{ nothing.render("This person is lazy and didn't wrote anything.") }} {% else %}
    {{ udoc.bio|default('')|markdown|safe }}
    {% endif %}
{% if isSelfProfile %} {{ home.render_sidebar() }} {% endif %}
{% endblock %}