{% extends "base.html" %} {% block title %}{{ user }}'s profile{% endblock %} {% block content-header %}

{{ profile.user }}'s profile

{% endblock %} {% block content %} {% if profile.homepage %}

Homepage

{{ profile.homepage }}

{% endif %}

Projects {% if person %}by {{ person.username }}{% endif %}{% if tag %}tagged with "{{ tag.name }}"{% endif %}

{% with profile.user.projects.live as project_list %}
    {% include "core/project_list_detailed.html" %}
{% endwith %} {% endblock %}