{% extends "base.html" %} {% block content %} {% include "partials/flash.html" %}
Public Profile
{{ owner.name | display_name(owner.username) }}
{% with user_link_href = owner_path, user_link_username = owner.username, user_link_label = owner.username, user_link_class = "link-secondary" %} {% include "partials/hover_card_user_link.html" %} {% endwith %}
{% if owner.activity %}
Current activity
{{ owner.activity }}
{% if owner.activity_updated_at %}
Updated {{ owner.activity_updated_at | humantime }}
{% endif %}
{% elif owner.activity_updated_at %}
Current activity
No current activity
Cleared {{ owner.activity_updated_at | humantime }}
{% endif %}

Welcome to {{ owner.username }}'s public profile. Browse their public repositories and recent updates below.

{% include "user/ping_card.html" %}
Showing {{ page.results | length }} public repositories.
Repositories
Public repositories
Updated and maintained by {% with user_link_href = owner_path, user_link_username = owner.username, user_link_label = owner.username, user_link_class = "link-secondary" %} {% include "partials/hover_card_user_link.html" %} {% endwith %}
{% if page.results | length == 0 %}

No repositories yet.

{% else %}
{% for repo in page.results %} {% endfor %}
Repository Visibility Created
{{ repo.name }}
{{ repo.slug }}
{% if repo.description %}
{{ repo.description }}
{% endif %}
{% if repo.visibility == "public" %} Public {% else %} Private {% endif %} {{ repo.created_at | humantime }}
{% endif %}
{% with page=page, query=query, per_page_id="user-repo-per-page", per_page_form="user-repo-filters" %} {% include "partials/paging_footer.html" %} {% endwith %}
{% endblock %} {% block scripts %} {% endblock %}