{% extends "default.html" %} {% block title %} {{ user.username }} {% endblock %} {% block breadcrumbs %}
  • {{ user.username }}
  • {% endblock %} {% 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.bio %}

    {{ user.bio }}

    {% endif %}
    {% endblock %}