Templates using Picnic
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user