{% extends "layout.html" %} {% block title %}{{ social.title }}{% endblock %} {% block meta %} {% include "partials/social_meta.html" %} {% endblock %} {% block head %} {% if readme_html.is_some() %} {% include "partials/katex.html" %} {% endif %} {% endblock %} {% block content %}

{{ owner.username }} / {{ repo.name }} {% if repo.visibility == "private" %}private{% endif %} {% if repo.archived %}archived{% endif %} {% if forked_from.is_some() %}fork{% endif %}

{% if let Some((fo, fn_)) = forked_from %}

forked from {{ fo }}/{{ fn_ }}

{% endif %} {% if !repo.description.is_empty() %}

{{ repo.description }}

{% endif %}
{% if viewer.is_some() %}
{% else %} {{ repo.watches_count }} · {{ repo.forks_count }} · {{ repo.stars_count }} {% endif %}
{% let tab = "code" %} {% let archive_ref = current_branch %} {% include "partials/repo_tabs.html" %} {% if empty %}

Empty repository. Push to get started.

git clone {{ clone_http }} git clone {{ clone_ssh }}
{% else %} {% let branch = current_branch %} {% let upload_path = "" %} {% include "partials/branch_bar.html" %} {% if !languages.is_empty() %} {% endif %} {% if let Some(html) = readme_html %}
{{ html|safe }}
{% endif %} {% endif %}
{% endblock %}