-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
79 lines (69 loc) · 3.59 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
70
71
72
73
74
75
76
77
78
79
<!--
___ ___ ________ ________ _________ _______ ________ _____ ______
|\ \|\ \|\ __ \|\ ___ \ |\___ ___\\ ___ \ |\ __ \|\ _ \ _ \
\ \ \\\ \ \ \|\ \ \ \_|\ \ \|___ \ \_\ \ __/|\ \ \|\ \ \ \\\__\ \ \
\ \ __ \ \ __ \ \ \ \\ \ \ \ \ \ \ \_|/_\ \ __ \ \ \\|__| \ \
\ \ \ \ \ \ \ \ \ \ \_\\ \ \ \ \ \ \ \_|\ \ \ \ \ \ \ \ \ \ \
\ \__\ \__\ \__\ \__\ \_______\ \ \__\ \ \_______\ \__\ \__\ \__\ \ \__\
\|__|\|__|\|__|\|__|\|_______| \|__| \|_______|\|__|\|__|\|__| \|__|
Github: https://github.com/HadTeam
-->
<!DOCTYPE html>
<html lang="zh-cmn-Hans"> <!-- 中文, 简体, 汉语 from https://datatracker.ietf.org/doc/html/bcp47 -->
<head>
<title>cdMir</title>
<meta charset="UTF-8" content="text/html">
<meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" name="viewport">
<meta content="Software,Mirror,software,mirror,download,Download,下载,软件,镜像,列表" name="Keywords"/>
<meta content="A high-speed download mirror list of common software for Chinese users." name="Description"/>
<meta content="pc,mobile" name="applicable-device">
<meta content="CornWorld" name="Author"/>
<meta content="CornWorld" name="Designer"/>
<meta content="Index" name="Robots"/>
<!-- Preload fonts -->
<link rel="preload" href="/assets/fonts/LatoLatin.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/assets/fonts/icons.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/assets/fonts/brand-icons.woff2" as="font" type="font/woff2" crossorigin>
<!-- Preload critical CSS -->
<link rel="preload" href="/assets/css/fomantic.css" as="style">
<link rel="preload" href="/assets/css/main.css" as="style">
<!-- Critical CSS -->
<link rel="stylesheet" href="/assets/css/fomantic.css">
<link rel="stylesheet" href="/assets/css/main.css">
<!-- Preload key resources -->
<link rel="modulepreload" href="/src/main.tsx" as="script">
<link rel="icon" type="image/png" href="./icons/favicon.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./icons/favicon-16x16.png" />
<link rel="apple-touch-icon" href="./icons/apple-touch-icon.png" />
<meta name="theme-color" content="#1976d2" />
<meta name="description" content="A software mirror list for users in mainland China" />
<link rel="manifest" href="./manifest.json" />
<!-- Preconnect to required domains -->
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="dns-prefetch" href="https://fonts.gstatic.com" />
<link rel="preconnect" crossorigin="anonymous" href="https://fonts.googleapis.com" />
<link rel="preconnect" crossorigin="anonymous" href="https://fonts.gstatic.com" />
<style>
/* Font display swap strategy */
@font-face {
font-family: 'Lato';
font-display: swap;
src: local('Lato'), url('/assets/fonts/LatoLatin.woff2') format('woff2');
}
/* Initial layout placeholder to prevent shifts */
#root {
padding: 59px 0 10px 0;
min-height: 100vh;
}
.ui.loader { display: none; }
.ui.loader.active { display: block; }
</style>
</head>
<body>
<div id="root">
<div class="ui active loader">Loading...</div>
</div>
<script type="module" src="/src/main.tsx"></script>
<noscript>You need to enable JavaScript to run this app.</noscript>
</body>
</html>