{% extends "base.html" %} {% block title %}Profile: {{ profile.name }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% if avatar_url %} {{ profile.name }}'s avatar {% else %}
{{ profile.name[0]|upper }}
{% endif %}

{{ profile.name }}

{% if profile.title %}

{{ profile.title }}

{% endif %} {% if profile.profile_slug %}

Profile URL: /~{{ profile.profile_slug }}

{% endif %} {% if profile.email %}

Email: {{ profile.email }}

{% endif %} {% if profile_bio %}
{{ profile_bio }}
{% endif %}
{% endblock %}