{% import "macros/refs.html" as refs %} {% extends "repo/base.html" %} {% block summary_nav_class %}active{% endblock %} {% block content %}
{% call refs::branch_table(refs.heads.iter().take(10)) %} {%- if refs.heads.len() > 10 -%} {%- endif -%} {%- if !refs.tags.is_empty() -%} {%- call refs::tag_table(refs.tags.iter().take(10)) -%} {%- if refs.tags.len() > 10 -%} {%- endif -%} {%- endif %} {% call refs::commit_table(commit_list.iter().take(10)) %} {% if commit_list.len() > 10 %} {%- endif %} {%- if repo_exported && config.http_clone_enabled() %} {% if !config.clone_prefix.is_empty() %} {% endif %} {% if !config.ssh_clone_prefix.is_empty() %} {% endif %} {%- endif %}
[...]
[...]
[...]
Clone
{{ config.clone_prefix }}/{{ repo.display() }}
{{ config.ssh_clone_prefix }}/{{ repo.display() }}
{% endblock %}