{% extends "default.html" %} {% block title %} {{ user.username }} {% endblock %} {% block breadcrumbs %}
  • {{ user.username }}
  • {% endblock %} {% block seo %} {% endblock %} {% block nav %}
    {% if logged_in_user and logged_in_user != user.username %}
    {% endif %} {% endblock %} {% block full %} {% if user.display_name and user.display_name != user.username %}

    {{ user.display_name }}

    {{ user.username }}

    {% else %}

    {{ user.username }}

    {% endif %}
      {% if user.URL %}
    • {{ user.URL }}
    • {% endif %} {% if user.company_url %}
    • {{ user.company }}
    • {% elif user.company %}
    • {{ user.company }}
    • {% endif %} {% if user.location %}
    • {{ user.location }}
    • {% endif %} {% if user.show_mail %}
    • {{ user.email }}
    • {% endif %}
    {% block content %}{% endblock %}
    {% endblock %} {% block scripts %} {% endblock %}