24 lines
635 B
HTML
24 lines
635 B
HTML
<!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>
|
|
|
|
<ul class="list-disc">
|
|
{{ range .Beatmapsets }}
|
|
<li><a href="https://osu.ppy.sh/s/{{ .ID }}" class="underline">{{ .Artist }} - {{ .Title }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|