POOLab18-SlopifyV2/res/template/index.html

33 lines
722 B
HTML
Raw Normal View History

2024-05-08 12:45:20 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Slopify V2 - Listen to the music you hate</title>
<link rel="stylesheet" type="text/css" href="base.css">
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<header id="navbar">
<h1 class="title">Slopify</h1>
</header>
<div id="body">
<h2>Artists</h2>
<div id="crumbs"></div>
<table id="artists">
<thead>
<tr>
<th>Name</th>
</tr>
</thead>
<tbody>
{{artists}}
</tbody>
</table>
</div>
<script type="text/javascript" src="base.js"></script>
<script>
initTable(document.getElementById("artists"))
</script>
</body>
</html>