fedhub/templates/repo_index.html

16 lines
281 B
HTML
Raw Normal View History

2020-04-20 00:21:26 -05:00
<html>
<head>
</head>
<body>
2020-04-21 09:33:34 -05:00
<h1>{{ repo_name }}</h1>
2020-04-20 00:21:26 -05:00
<h3>branches:</h3>
<ul>
{% for branch in branches %}
2020-04-21 09:33:34 -05:00
<a href="{{ branch.url }}">{{ branch.name }}</a>
2020-04-20 00:21:26 -05:00
{% endfor %}
</ul>
</body>
</html>