subscribe-bot/web/templates/index.html

38 lines
1 KiB
HTML
Raw Normal View History

2020-10-14 19:08:38 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>subscribe-bot</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/static/tailwind.min.css" />
</head>
<body>
<div class="container mx-auto">
<p>Logged in: {{ .LoggedIn }}</p>
<p>Maps:</p>
2020-10-14 19:56:56 +00:00
<table class="table-auto">
<thead>
<th>Mapper</th>
<th>Artist</th>
<th>Title</th>
<th>Links</th>
</thead>
{{ range .Beatmapsets }}
2020-10-14 19:56:56 +00:00
<tbody>
<td>{{ .Creator }}</td>
<td>{{ .Artist }}</td>
<td>{{ .Title }}</td>
<td>
<a href="https://osu.ppy.sh/s/{{ .ID }}" class="underline">osu</a>
</td>
</tbody>
2020-10-14 19:08:38 +00:00
{{ end }}
2020-10-14 19:56:56 +00:00
</table>
2020-10-14 19:08:38 +00:00
</div>
</body>
</html>