-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (121 loc) · 3.49 KB
/
Copy pathindex.html
File metadata and controls
126 lines (121 loc) · 3.49 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>报告索引</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: -apple-system, "Microsoft YaHei", "PingFang SC", sans-serif;
background: #f5f5f5;
color: #333;
line-height: 1.6;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 40px 20px;
}
h1 {
color: #1a1a1a;
margin-bottom: 8px;
}
.subtitle {
color: #666;
margin-bottom: 32px;
}
.actions {
margin-bottom: 24px;
display: flex;
gap: 12px;
}
.btn {
display: inline-block;
padding: 8px 16px;
background: #4a90d9;
color: white;
text-decoration: none;
border-radius: 4px;
font-size: 14px;
}
.btn:hover { background: #357abd; }
.btn.secondary {
background: #f5f5f5;
color: #555;
border: 1px solid #ddd;
}
.btn.secondary:hover { background: #e8e8e8; }
table {
width: 100%;
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
th, td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid #eee;
}
th {
background: #f8f9fa;
font-weight: 600;
color: #555;
}
tr:hover { background: #f8f9fa; }
a { color: #4a90d9; text-decoration: none; }
a:hover { text-decoration: underline; }
.empty {
text-align: center;
padding: 60px 20px;
color: #999;
}
code {
background: #f0f0f0;
padding: 2px 6px;
border-radius: 3px;
font-size: 13px;
}
footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eee;
color: #999;
font-size: 13px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1>📄 报告索引</h1>
<p class="subtitle">共 1 份报告</p>
<div class="actions">
<a href="interactive.html" class="btn">📝 打开 MD 编辑器</a>
<button class="btn secondary" onclick="location.reload()">🔄 刷新列表</button>
</div>
<table>
<thead>
<tr>
<th>标题</th>
<th>生成时间</th>
<th>大小</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="archive/demo_20260530_095810.html">MD → HTML 转换示例</a></td>
<td>2026-05-30 09:58</td>
<td>26,476 字节</td>
<td><a href="archive/demo_20260530_095810.html" class="btn">打开</a></td>
</tr>
</tbody>
</table>
<footer>
MD → HTML 交互式报告工具 | <a href="https://github.com">GitHub</a>
</footer>
</div>
</body>
</html>