Templates using Picnic
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
c v t
2020-07-05 17:33:29 +02:00
parent d6bf70e5bc
commit efc3c98ba4
8 changed files with 63 additions and 52 deletions

View File

@ -1,17 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<title>Application Listing</title>
</head>
<body>
<ul>
{% for app in apps %}
<li>
<a href="{{ url_for('apps.install', app_name=app) }}">{{ app }}</a>
</li>
{% endfor %}
</ul>
</body>
</html>
</html>
{% extends "base.html" %}
{% block content %}
<h1>Installable apps</h1>
<p>Where the magic h<em>app</em>ens.</p>
<ul>
{% for app in apps %}
<li>
<a href="{{ url_for('apps.install', app_name=app) }}">{{ app }}</a>
</li>
</ul>
{% endfor %}
{% endblock content %}