You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
880 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="static/music.css">
</head>
<body>
<div class="row">
<div class="col">
<h1 class="section-title">酷狗音乐排行榜</h1>
</div>
<form method="get" action="/index">
<button class="but" type="submit">回到主页</button>
</form>
</div>
<table class="table" border="1">
<tr>
<td bgcolor="#f8f8ff">歌名</td>
<td style="width:20%;">播放地址</td>
</tr>
{% for music in datalist %}
<tr>
<td bgcolor="#d2691e">{{ music[0] }}</td>
<td bgcolor="#ff4500"><a href="{{ music[1] }}" target="_blank">播放</a></td>
</tr>
{% endfor %}
</table>
</body>
</html>