promodj/templates/index.htm

24 lines
620 B
HTML
Raw Permalink Normal View History

2021-09-25 12:38:27 +05:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Список жанров</title>
<link rel="stylesheet" href="/style.css">
2022-01-26 11:27:25 +05:00
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
2021-09-25 12:38:27 +05:00
</head>
<body>
<header>
<img src="/favicon.svg">
{{.Domain}}
</header>
<main>
<h1>Список жанров</h1>
<ul id="genres-list">
2022-07-02 16:20:06 +05:00
<li><a href="/player?top100=1">TOP 100</a></li>{{range .Genres}}
<li><a href="/player?genre={{.Code}}">{{.Name}}</a></li>{{end}}
2021-09-25 12:38:27 +05:00
</ul>
</main>
</body>
</html>