{% extends "base.html" %} {% block title %}{{ username }} · tit{% endblock %} {% block content %}

{{ username }}

{% if bio.is_empty() %}

This user has not added a bio.

{% else %}

{{ bio }}

{% endif %} {% if contact_email.is_empty() %}{% else %}

Contact: {{ contact_email }}

{% endif %}

Public repositories

{% if repositories.is_empty() %}

This user has no public repositories.

{% else %} {% if has_previous || has_next %} {% endif %} {% endif %}
{% endblock %}