-
Notifications
You must be signed in to change notification settings - Fork 390
/
index.html
69 lines (63 loc) · 1.33 KB
/
index.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
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0, user-scalable=no" name="viewport">
<title>软件包列表</title>
<style>
body {
text-align: center;
}
body>ul, body>table {
display: inline-block;
text-align: initial;
}
table td {
padding: 4pt 10pt;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
table tr:nth-child(n+1) td:not(:nth-child(3)) {
font-family: monospace;
}
table tr:nth-child(n+1) td:nth-child(3) {
min-width: 10em;
max-width: 25em;
}
</style>
</head>
<body>
<a href="https://github.com/zq1997/deepin-wine">访问GitHub主页</a>
<br>
<ul>
<li>
首次使用需要添加仓库:
<b><code>wget -O- https://deepin-wine.i-m.dev/setup.sh | sh</code></b>
</li>
<li>
而后使用:
<b><code>apt install ...</code></b>
安装对应软件包
</li>
<li>应用图标需要注销重登录后才会出现</li>
</ul>
<br>
<table>
<tr>
<th>包名(点击可下载.deb包)</th>
<th>版本</th>
<th>描述</th>
</tr>
<!--template-->
<tr>
<td><a href="%s">%s</a></td>
<td>%s</td>
<td>%s</td>
</tr>
<!--template-->
</table>
<p>更新时间:<!--update_time--></p>
</body>
</html>