<html>
<head>
<title>Index</title>
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col">
<h1>Welkom!</h1>
<p>Eerste game in memory is <b>{{ first_entry[1] }}</b> met de game id <b>{{ first_entry[0] }}</b></p>
<p>Totaal aantal games in memory is <b>{{ sizedb }}</b></p>
</div>
<table class="table table-striped">
<thead>
<tr>
<th><a href="/">App ID</a></th>
<th><a href="?sortby=name{% if reverse %}&reverse=True{% endif %}">Name</a></th>
<th><a href="?sortby=release_date{% if reverse %}&reverse=True{% endif %}">Release date</a></th>
<th><a href="?sortby=price{% if reverse %}&reverse=True{% endif %}">Price</a></th>
</tr>
</thead>
<tbody>
{% for row in entries %}
<tr style="text-align: center;">
<td>{{ row[0] }}</td>
<td>{{ row[1] }}</td>
<td>{{ row[2] }}</td>
<td>{{ row[17] }} ,-</td>
{% endfor %}
</tbody>
</table>
</body>
</html>