fedhub/templates/repo_index.html

13 lines
262 B
HTML
Raw Normal View History

2020-04-21 12:33:14 -05:00
{% extends "layout.html" %}
2020-04-20 00:21:26 -05:00
2020-04-21 12:33:14 -05:00
{% block content %}
<h1>{{ repo_name }}</h1>
2020-04-20 00:21:26 -05:00
2020-04-21 12:33:14 -05:00
<h3>branches:</h3>
<ul>
{% for branch in branches %}
2020-04-21 19:21:28 -05:00
<a href="{{ branch.url | safe }}">{{ branch.name }}</a>
2020-04-21 12:33:14 -05:00
{% endfor %}
</ul>
{% endblock %}