{% extends "templates/web.html" %} {% block page_content %}
{% if user.photo %}
{{ user.full_name }}
{% else %}
{{ user.abbr }}
{% endif %}

{{ user.full_name }}

{% if user.short_intro %}

{{ user.short_intro }}

{% endif %} {% if user.bio %}

{{ frappe.utils.md_to_html(user.bio) }}

{% endif %}
{% endblock %}