Parent [>]
1{% extends "base.html" %}
2
3{% block title %}branches - {{ repo }}{% endblock %}
4{% block og_title %}branches - {{ repo }}{% endblock %}
5{% block og_description %}branches in {{ repo }}{% endblock %}
6
7{% block breadcrumbs %}
8<ul>
9  <li><a href="{{ site.base_url }}/">{{ site.site_name }}</a></li>
10  <li><a href="{{ site.base_url }}/{{ repo }}">{{ repo }}</a></li>
11  <li>branches</li>
12</ul>
13{% endblock %}
14
15{% block content %}
16<h1>branches</h1>
17
18{% if branches.is_empty() %}
19<p>No branches.</p>
20{% else %}
21<div class="branch-list">
22  {% for branch in branches %}
23  <a href="{{ site.base_url }}/{{ repo }}/branches/{{ branch.name }}" class="branch-row">
24    <span class="branch-name">{{ branch.name }}</span>
25    <span class="branch-date">{% if branch.is_default %}<span class="branch-default">default</span>{% endif %}{{ branch.date }}</span>
26  </a>
27  {% endfor %}
28</div>
29{% endif %}
30{% endblock %}