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.

38 lines
1.1 KiB

6 months ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="static/manh.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 >评分</td>
<td style="width:20%;">名称</td>
<td style="width:20%;">人气</td>
<td style="width:20%;">收藏</td>
<td style="width:20%;">作者</td>
<td >地址</td>
</tr>
{% for manh in datalist %}
<tr>
<td>{{ manh[1] }}</td>
<td>{{ manh[0] }}</td>
<td>{{ manh[2] }}</td>
<td>{{ manh[3] }}</td>
<td>{{ manh[4] }}</td>
<td><a href="{{ manh[5] }}" target="_blank">去腾讯动漫看</a></td>
</tr>
{% endfor %}
</table>
</body>
</html>