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