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.

43 lines
1.4 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="static/movies.css">
</head>
<body>
<div class="row">
<div class="col">
<h1 class="section-title">豆瓣电影top50排行榜</h1>
</div>
<form method="get" action="/index">
<button class="but" type="submit">回到主页</button>
</form>
</div>
<table class="table" border="1">
<tr>
<td >排名</td>
<td >评分</td>
<td style="width:5%;">电影中文名称</td>
<td style="width:5%;">导演</td>
<td style="width:5%;">语言</td>
<td style="width: 30%;">演员</td>
<td style="width: 50%;">简介</td>
<td style="width:5%;">播放地址</td>
</tr>
{% for movie in movies %}
<tr>
<td>{{ movie[4] }}</td>
<td>{{ movie[5] }}</td>
<td>{{ movie[0] }}</td>
<td>{{ movie[1] }}</td>
<td>{{ movie[3] }}</td>
<td>{{ movie[2] }}</td>
<td>{{ movie[6] }}</td>
<td><a href="{{ movie[7] }}" target="_blank">去豆瓣看</a></td>
</tr>
{% endfor %}
</table>
<embed src="static/pic/bgmusic.mp3" preload="auto" autostart="true" loop="true" hidden="true">
</body>
</html>