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.
40 lines
1.2 KiB
40 lines
1.2 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/text.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="row">
|
||
|
<div class="col">
|
||
|
<h1 class="section-title">笔趣阁小说</h1>
|
||
|
<form method="get" action="/index">
|
||
|
<button class="but" type="submit" >回到主页</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
<table id="table1" style="float:left" border="1" bgcolor="#3cb371">
|
||
|
{% for name in text_names %}
|
||
|
<tr>
|
||
|
<td width="500px">{{ name }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
<table id="table3" style="float:left" border="1" bgcolor="#3cb371">
|
||
|
{% for author in text_authors2 %}
|
||
|
<tr>
|
||
|
<td width="500px">{{ author }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
<table id="table2" border="1" bgcolor="#faebd7">
|
||
|
{% for url in text_urls %}
|
||
|
<tr>
|
||
|
<td><a href="https://www.biqg.cc{{url}}">看小说</a></td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|