{% extends "layout.html" %} {% import "event.html" as eventutil with context %} {% block title %} {{user.canonical_name}}'s projects {% endblock %} {% block content %}

{{user.canonical_name}}

{% if user.location %}

{{user.location}}

{% endif %} {% if user.url %}

{{user.url}}

{% endif %} {% if user.bio %}

{{user.bio | md}}

{% endif %}
{% if search_error %}
{{ search_error }}
{% endif %}
{% for project in projects %}

{% if project.visibility.value != 'public' %} {{project.visibility.value}} {% endif %} {{project.name}}

{{project.description}}

{% if project.tags %}
{% for tag in project.tags %} #{{tag}} {% endfor %}
{% endif %}
{% endfor %}
{{pagination()}}
{% endblock %}