Files
flake-tracker/templates/flakes.html
2025-02-01 20:17:04 +01:00

15 lines
285 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>All flakes</h1>
<p>Displays all flakes explicitly scanned and automatically discovered by the tracker.</p>
<ul>
{% for flake in flakes %}
<li><a href="{{ flake.link() }}">{{ flake.uri }}</a></li>
{% endfor %}
</ul>
{% endblock %}