-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (90 loc) · 2.4 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
---
---
<html lang="zh-Hans" class="han-init">
<head>
{% seo %}
<link rel="stylesheet" type="text/css" href="{{site.cdn}}/js_css/semantic/semantic.min.css{{site.cache_version}}">
<link rel="stylesheet" href="{{site.cdn}}/js_css/han/han.min.css{{site.cache_version}}">
<!-- <link rel="stylesheet" href="assets/js_css/zepto.min.js"> -->
<!-- <script src="http://libs.baidu.com/jquery/2.1.3/jquery.min.js"></script>
<script src="dist/semantic.min.js"></script> -->
<style>
/*fix bugs in UC browser*/
.ui.grid{
display: block;
}
.ui.menu img.logo {
padding: 0.5em;
}
.ui.navigation.menu{
border-bottom: solid #e7e7e7 1px;
background-color: white;
}
.ui.navigation.menu .item{
color: #4183C4;
}
.ui.navigation.menu a.item:hover{
color: #4183FF;
}
.ui.fixed.grid{
position: fixed;
top: 0px;
width: 100%;
z-index: 9999;
}
.ui.main {
margin-top: 7em;
margin-bottom: 3em;
}
.ui.relaxed.page-index.list .item:hover{
background-color: rgba(0,0,0,0.07);
background-image: none;
}
#cnzz_stat_icon_1259124089{
display: none;
}
</style>
</head>
<body>
<div class="ui fixed centered grid" >
<div class="ten wide column">
<div class="ui secondary navigation menu">
<img class="logo" src="{{site.cdn}}/images/logo_.png{{site.cache_version}}">
<a href="#" class="item">
<b>Paradox Life</b>
</a>
<a href="#" class="item">
<b>Continue</b>
</a>
</div>
</div>
</div>
<div class="ui main text container">
<div class="ui piled segment">
<h3>山下杂记</h3>
<div class="ui relaxed divided page-index list">
{% for post in site.posts %}
{% if post.categories contains 'essay'%}
<div class="item">
<a href="{{ post.url }}">{{ post.title }}</a>
</div>
{% endif %}
{% endfor %}
</div>
</div>
<div class="ui piled segment">
<h3>屠龙之技</h3>
<div class="ui relaxed divided page-index list">
{% for post in site.posts %}
{% if post.categories contains 'technique'%}
<div class="item">
<a href="{{ post.url }}">{{ post.title }}</a>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
{% include analysis.html %}
</body>
</html>