This repository has been archived on 2020-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
magic-app/spikes/templates/first/index.html

17 lines
373 B
HTML
Raw Normal View History

2020-06-30 18:28:47 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2020-06-30 18:37:10 +00:00
<title>Magic App</title>
2020-06-30 18:28:47 +00:00
</head>
<body>
2020-06-30 19:03:58 +00:00
<p>List of apps that can be installed:</p>
<ul>
{% for app in apps %}
<li><a href="/{{ app }}">{{ app }}</a></li>
</ul>
{% endfor %}
2020-06-30 18:28:47 +00:00
</body>
</html>