Parent
[>]
1{% extends "base.html" %} 2 3{% block title %}{{ branch }} — {{ repo }}{% endblock %} 4 5{% block breadcrumbs %} 6 7 {{ crate::hostname() }} 8 {{ repo }} 9 branches 10 {{ branch }} 11 12{% endblock %} 13 14{% block content %} 15{{ branch }} 16 17 18 Archive 19 20 {{ repo }}-{{ branch }}.tar.gztar.gz 21 {{ repo }}-{{ branch }}.tar.xztar.xz 22 {{ repo }}-{{ branch }}.zipzip 23 24 25 26 27 28 29 Tree 30 [{{ tip_sha[..8] }}] 31 [>] 32 33 34 35{% if commits.is_empty() %} 36No commits. 37{% else %} 38 39 {% for commit in commits %} 40 41 {{ commit.sha[..8] }} 42 {{ commit.message }} 43 {{ commit.author }}{{ commit.date }} 44 45 {% endfor %} 46 47 48 {% if has_prev %}← newer{% endif %} 49 {% if has_next %}older →{% endif %} 50 51{% endif %} 52{% endblock %}