Initial Commit

This commit is contained in:
2019-05-21 01:06:59 +02:00
commit 645fe3a8a5
6 changed files with 186 additions and 0 deletions

30
templates/index.html Normal file
View File

@ -0,0 +1,30 @@
<!doctype html>
<html>
<body>
<h1>Hello!</h1>
<table>
<tr>
<th scope="col">Name</th>
<th scope="col">Song</th>
<th scope="col">Künstler</th>
</tr>
{% for entry in list: %}
<tr>
<td>
{{ entry[0] }}
</td>
<td>
{{ entry[1] }}
</td>
<td>
{{ entry[2] }}
</td>
</tr>
{% endfor %}
</table>
</body>
</html>