fedhub/templates/index.html
2020-04-20 00:21:26 -05:00

14 lines
237 B
HTML

<html>
<head>
</head>
<body>
<h1>Fedhub</h1>
<ul>
{% for repo in repos %}
<li><a href="/{{ repo }}">{{ repo }}</a></li>
{% endfor %}
</ul>
</body>
</html>