{% extends "profile.html" %} {% block title %} {{user.canonical_name}} {% endblock %} {% block profile %}
{% if profile.avatar %} {{user.username}}'s avatar {% endif %} {% if profile.location %}

{{profile.location}}

{% endif %} {% if profile.url %}

{{profile.url}}

{% endif %} {% if current_user and user.id == current_user.id %} Create a new project {{icon("caret-right")}} Edit your profile {{icon("caret-right")}} {% endif %}
{% if profile.bio %}
{{profile.bio | md}}
{% endif %} {% if projects %}
{% for project in projects %}

{% if project.visibility.value != 'PUBLIC' %} {{project.visibility.value.lower()}} {% endif %} {{project.name}}

{{project.description}}

{% if project.tags %}
{% for tag in project.tags %} #{{tag}} {% endfor %}
{% endif %}
{% endfor %} {% if total_results > 5 %} {% endif %}
{% else %}
This user does not have any projects.
{% endif %}
{% endblock %}