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{% if commits.is_empty() %} 18No commits. 19{% else %} 20 21 {% for commit in commits %} 22 23 {{ commit.sha[..8] }} 24 {{ commit.message }} 25 {{ commit.author }}{{ commit.date }} 26 27 {% endfor %} 28 29 30 {% if has_prev %}← newer{% endif %} 31 {% if has_next %}older →{% endif %} 32 33{% endif %} 34{% endblock %}