2024-08-08 15:43:49 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html data-theme="light">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<title>
|
|
|
|
|
Boardgame Site
|
|
|
|
|
</title>
|
|
|
|
|
<script src="/scripts/main.js"></script>
|
|
|
|
|
<link rel="stylesheet" href="styles/main.css">
|
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
|
|
|
</head>
|
|
|
|
|
|
2024-08-08 16:14:55 +02:00
|
|
|
<body onload="loadOwnedGames()">
|
|
|
|
|
|
2024-08-08 16:32:05 +02:00
|
|
|
<div class="table-responsive">
|
|
|
|
|
<table id="boardgame_table" class="table table-striped">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th scope="col">Thumbnail</th>
|
|
|
|
|
<th scope="col">Naam</th>
|
|
|
|
|
<th scope="col">Beschrijving</th>
|
2024-08-09 14:42:52 +02:00
|
|
|
<th scope="col">Moeilijkheid</th>
|
2024-08-08 16:32:05 +02:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody id="boardgame_table_tbody">
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
2024-08-08 15:43:49 +02:00
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</html>
|