forked from OIerDb-ng/OIerDb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.07 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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OIerDb NG</title>
<meta
name="description"
content="OIerDb 是中国信息学竞赛选手的一个数据库。你能够在这个网站上查询选手们的获奖记录,目前可以通过姓名、姓名首字母缩写、省份、年级和学校来进行查询。"
/>
<script>
window.appVersion = '<%= appVersion %>';
</script>
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="220x220" />
<meta name="theme-color" content="#ffffff" />
<meta rel="canonical" href="https://oier.baoshuo.dev" />
</head>
<body>
<div id="app">
<div class="ui segment" style="height: 100px">
<div class="ui active transition visible inverted dimmer">
<div class="content">
<div class="ui medium text loader">Loading...</div>
</div>
</div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>