{% if owner_path is startingwith('/teams/') %}
{{ owner_slug | default(owner_name) }}
{% else %}
{% with user_link_href = owner_path, user_link_username = owner_slug, user_link_label = owner_slug | default(owner_name), user_link_class = "link-primary" %}
{% include "partials/hover_card_user_link.html" %}
{% endwith %}
{% endif %}
/
{{ repo.slug }}
{% if forked_from %}
{% endif %}
{% if repo.description %}
{{ repo.description }}
{% endif %}
{% if repo.about %}
{% set repo_about_current_team_slug = owner_slug if owner_path is startingwith('/teams/') else "" %}
{{ repo.about | markdown | linkify(is_private=repo.visibility == "private", current_team_slug=repo_about_current_team_slug) }}
{% endif %}