{% extends "base.html" %} {% block content %}

~{{ user.username }}

{% if user.location %}

{{user.location}}

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

{{user.url}}

{% endif %} {% if user.bio %} {{user.bio | md}} {% endif %} {% if notice %}
{{ notice }}
{% endif %}
{% if len(repos) == 0 %} {% if search %}

Nothing found.

{% else %}

This user has no repositories.

{% endif %} {% else %}
{% if search_error %}
{{ search_error }}
{% endif %}
{% for repo in repos %}

~{{user.username}}/{{repo.name}} {% if repo.visibility.value != 'PUBLIC' %} {{ repo.visibility.value.lower() }} {% endif %}

{% if repo.description %}

{{ repo.description }}

{% endif %}
{% endfor %}
{% endif %} {{ pagination() }}
{% endblock %}