fedhub/templates/index.html

15 lines
237 B
HTML
Raw Normal View History

2020-04-20 05:21:26 +00:00
<html>
<head>
</head>
<body>
<h1>Fedhub</h1>
<ul>
{% for repo in repos %}
<li><a href="/{{ repo }}">{{ repo }}</a></li>
{% endfor %}
</ul>
</body>
</html>