-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (36 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" id="viewport-id" content="width=device-width, initial-scale=1.0">
<title>前端汇总</title>
<!-- CDN -->
<link href="https://cdn.staticfile.org/twitter-bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.staticfile.org/twitter-bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min.js" integrity="sha512-3gJwYpMe3QewGELv8k/BX9vcqhryRdzRMxVfq6ngyWXwo03GFEzjsUm8Q7RZcHPHksttq7/GFoxjCVUjkjvPdw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.8.3/angular.js"></script>
<script src="https://cdn.bootcss.com/angular.js/1.7.0/angular-route.min.js"></script>
<!-- anjularjs file -->
<script type="text/javascript" src="./templates/app.js"></script>
<script type="text/javascript" src="./templates/global/global.component.js"></script>
<script type="text/javascript" src="./templates/navbar/navbar.component.js"></script>
<script type="text/javascript" src="./templates/htmlCode/htmlCode.component.js"></script>
<script type="text/javascript" src="./templates/jsCode/jsCode.component.js"></script>
<script type="text/javascript" src="./templates/codeTemplate/codeTemplate.component.js"></script>
<!-- local -->
<link href="./css/index.css" rel="stylesheet">
<script type="text/javascript" src="./js/index.js"></script>
</head>
<body ng-app="mainApp">
<global-component></global-component>
<script type="text/ng-template" id="embedded.home.html">
<article class="col-md-10 offset-md-1 py-3">
<h1>前端博客</h1>
<h2>主要功能</h2>
展示前端语法和演示效果
<h3>远程访问</h3>
请访问: https://winglee6.github.io/
</article>
</script>
</body>
</html>