-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
43 lines (40 loc) · 1.71 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<!-- 8102 年的 IE 兼容 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- 优秀的国产浏览器兼容 -->
<meta name="renderer" content="webkit">
<!-- 窗口大小,缩放大小 -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 标题 -->
<title>模组简体中文翻译规范与指南</title>
<link href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<!-- 自己的 css -->
<link rel="stylesheet" href="css/index.css">
<!-- 图标,emmmm,还没想好,随便选了个 -->
<link rel="icon" href="https://avatars1.githubusercontent.com/u/34183279?s=16">
</head>
<body>
<!-- 标题 -->
<div class="page-header">
<h1>Minecraft 模组简体中文翻译规范与指南<br><small>—— 2023-11-25 ——</small></h1>
</div>
<div class="container">
<div class="row">
<div class="col-md-2"></div>
<div class="container col-md-8" id='main'></div>
<div class="col-md-2"></div>
</div>
</div>
<!-- jQuery (Bootstrap 的所有 JavaScript 插件都依赖 jQuery,所以必须放在前边) -->
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- 加载 Bootstrap 的所有 JavaScript 插件 -->
<script src="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- showdown 框架 -->
<script src="https://cdn.bootcdn.net/ajax/libs/showdown/1.8.6/showdown.min.js"></script>
<!-- 自己的 js -->
<script src="js/index.js"></script>
</body>
</html>