{% extends "user-profile.html" %} {% block content %} {% if user.displayName and user.displayName != user.username %}

{{ user.displayName }}

{{ user.username }}

{% else %}

{{ user.username }}

{% endif %}
    {% if user.URL %}
  • {{ user.URL }}
  • {% endif %} {% if user.companyURL %}
  • {{ user.company }}
  • {% elif user.company %}
  • {{ user.company }}
  • {% endif %} {% if user.location %}
  • {{ user.location }}
  • {% endif %} {% if user.showMail %}
  • {{ user.email }}
  • {% endif %}
{% if user.bio %}

{{ user.bio }}

{% endif %}
{% endblock %}