-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
121 lines (76 loc) · 3.24 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1">
<meta name="applicable-device" content="pc,mobile" />
<title>练习生</title>
<!-- 加载 css -->
<link rel="stylesheet" href="/css/normalize.min.css">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/index.min.css">
<!--[if lt IE 9]>
<!-- 兼容 IE 9 以下的腻子脚本 -->
<script src="/js/html5shiv.min.js"></script>
<script src="/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- 导航栏 -->
<nav class="navbar navbar-default navbar-fixed-top l-bg--white">
<!-- We use the fluid option here to avoid overriding the fixed width of a normal container within the narrow content columns. -->
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">生命练习生</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active">
<a href="/">首页</a>
</li>
<li class="">
<a href="/hobby">兴趣</a>
</li>
<li class="">
<a href="/about">关于</a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
<!-- <div class="js-test"></div>
<div class="js-test1"></div>
<div class="js-test2"></div> -->
</nav>
<div class="c-side is-hidden">
<div class="c-side__table">
<ul>
<li>
<a class="js-touch" href="/">首页</a>
</li>
<li>
<a class="js-touch" href="/hobby">兴趣</a>
</li>
<li>
<a class="js-touch" href="/about">关于</a>
</li>
</ul>
</div>
</div>
<div class="c-action js-action">
</div>
<div class="c-list l-container">
<!-- 所有文章列表 -->
<p class="text-success">博主加油!已累计发布 1 篇文章 </p>
<ul class="c-list__posts">
<li class="c-list__item">
<a href="/2017/11/02/style-of-writing/"><h4>文章写作风格</h4></a>
</li>
</ul>
</div>
<!-- 加载 js -->
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
<script src="/js/fastclick.min.js"></script>
<script src="/js/index.js"></script>
</body>
</html>