14 lines
237 B
HTML
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>
|