-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemplate.html
41 lines (39 loc) · 980 Bytes
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>已下载投稿</title>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tr>
<th>封面</th>
<th>标题</th>
<th>UP主</th>
<th>发布时间</th>
<th>收藏时间</th>
<th>总时长</th>
<th>本地视频</th>
<th>简介</th>
</tr>
<!-- 此处填充投稿内容 -->
<!--
<tr>
<td><img src="output/all/BV1eY4y1g7wk.jpg" alt="封面图片" style="height: 100px"/></td>
<td>社会计算-Lecture3-社会网络的结构-2022-06-15</td>
<td>王博-斯普特尼克</td>
<td>2023-03-01 00:00:00</td>
<td>2023-04-02 11:26:00</td>
<td>3:24:00</td>
<td><a href="output/all/BV1eY4y1g7wk.mp4" target="_blank">本地视频</a></td>
<td>简介内容</td>
</tr>
-->
</table>
</body>
</html>