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.
36 lines
1.0 KiB
36 lines
1.0 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<link rel="stylesheet" type="text/css" href="static/text.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 >地址</td>
|
|
</tr>
|
|
{% for qm in datalist %}
|
|
<tr>
|
|
<td>{{ qm[1] }}</td>
|
|
<td>{{ qm[0] }}</td>
|
|
<td>{{ qm[2] }}</td>
|
|
<td>{{ qm[3] }}</td>
|
|
<td><a href="{{ qm[4] }}" target="_blank">去七猫小说看</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</body>
|
|
</html> |