{% extends "base.html" %} {% block content %}
{% include "partials/repo_heading.html" %}
Branch: {{ branch_label }}
{% if not empty_repo %} {% endif %} {% set repo_tab = "files" %} {% set repo_tab_label = "Files" %} {% set repo_view_files_href = breadcrumbs[0].href %} {% include "partials/repo_tabs.html" %}
{% include "partials/repo_clone_url.html" %}
Files {{ dir_count }} dirs · {{ file_count }} files{% if other_count > 0 %} · {{ other_count }} others{% endif %}
{% if repo.visibility == "public" %} Public {% else %} Private {% endif %}
{% if empty_repo %}

No commits yet.

{% else %} {% set nav_class = "mb-3 pearing-breadcrumb-case" %} {% set list_class = "breadcrumb mb-0" %} {% include "partials/breadcrumbs.html" %}
{% for entry in entries %} {% endfor %}
Name Size
{% if entry.kind == "dir" %} {{ entry.kind }} {% elif entry.kind == "file" %} {{ entry.kind }} {% elif entry.kind == "symlink" %} {{ entry.kind }} {% elif entry.kind == "submodule" %} {{ entry.kind }} {% else %} {{ entry.kind }} {% endif %} {% if entry.href %} {{ entry.name }} {% else %} {{ entry.name }} {% endif %} {{ entry.size }}
{% endif %}
{% endblock %}