-
Notifications
You must be signed in to change notification settings - Fork 13
/
changelog.html
29 lines (29 loc) · 986 Bytes
/
changelog.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
<!DOCTYPE html>
<html lang="zh">
<head>
<title>Bootstrap4 中文文档 - 更新日志</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="js/jquery.min.js"></script>
<script src="js/domloader.js"></script>
<link href="css/domloader.css" rel="stylesheet"/>
<script>
domloader.init();
domloader.preload('config/init.html');
domloader.preload('config/pre.html');
domloader.html('#tpl_content', 'tpl/changelog.html');
domloader.onload(function () {
$('#nav_about').addClass('active');
});
</script>
</head>
<body>
<div id="container">
<div class="container">
<div id="tpl_header"></div>
<div id="tpl_content"></div>
</div>
<div id="tpl_footer"></div>
</div>
</body>
</html>