Files
flake-tracker/templates/index.html

14 lines
209 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Flake Tracker</h1>
<ul>
{% for flake in flakes %}
<li><a href="{{ flake.flake_link() }}">{{ flake.flake_uri }}</a></li>
{% endfor %}
</ul>
{% endblock %}