fedhub/templates/index.html

8 lines
163 B
HTML
Raw Normal View History

2020-04-21 17:33:14 +00:00
{% extends "layout.html" %}
2020-04-20 05:21:26 +00:00
2020-04-21 17:33:14 +00:00
{% block content %}
{% for repo in repos %}
<li><a href="/{{ repo }}">{{ repo }}</a></li>
{% endfor %}
{% endblock %}