-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
156 lines (143 loc) · 5.23 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
---
layout: default
---
<div class="slider">
<div class="slider-ele">
<div class="slider-img">
<img src="images/slider-1.jpg" alt="">
</div>
<div class="slider-msg">
如果你生气了, 就欺负我好了<br>
反正我那么喜欢你
</div>
</div>
<div class="slider-ele">
<div class="slider-img">
<img src="images/slider-2.jpg" alt="">
</div>
<div class="slider-msg">
希望你们能用功读书<br>
不要像我只能靠脸混吃混喝
</div>
</div>
<div class="slider-ele">
<div class="slider-img">
<img src="images/slider-3.jpg" alt="">
</div>
<div class="slider-msg">
世界上最重要的技术,是为你服务
</div>
</div>
</div>
<div class="row row-intro">
<div class="cols-sm-3 poem">
<h1>陋博铭</h1>
<p>天不在广, 有光就行
<p>地不在多, 有位就停
<p>虽是陋博, 确为心沥
<p>鸡鸣上工地, 狗眠方归寝
<p>扯淡有基友, 往来俱穷丁
<p>可以调戏我, 搅基情
<p>无弹窗之扰民, 无广告之乱形
<p>南阳诸葛庐,西蜀子云亭
<p>孔子曰: 丑怎么了?
</div>
<div class="cols-sm-3">
{% for post in site.posts limit:10 %}
<p><a title="{{ post.title }}" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }} </a></p>
{% endfor %}
</div>
</div>
<div class="row row-post">
<div class="cols-md-1">
<section>
{% for post in site.categories.js limit:1 offset:0 %}
<header>
<span><a title="JS" href="{{ site.baseurl }}/categories/js.html">JS</a></span>
<h1><a title="{{ post.title }}" class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h1>
</header>
<p class="excerpt">
{{ post.content | strip_html | truncate: 100, "..." }}
</p>
<p class="read-more"><a class="post-link" title=" title="{{ post.title }}"" href="{{ post.url | prepend: site.baseurl }}">more→</a></p>
{% endfor %}
<ul>
{% for post in site.categories.js limit:4 offset:1 %}
<li><a class="post-link" title="{{ post.title }}" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</section>
</div>
<div class="cols-md-1">
<section>
{% for post in site.categories.css limit:1 offset:0 %}
<header>
<span><a title="CSS" href="{{ site.baseurl }}/categories/css.html">CSS</a></span>
<h1><a title="{{ post.title }}" class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title}}</a></h1>
</header>
<p class="excerpt">
{{ post.content | strip_html | truncate: 100, "..." }}
</p>
<p class="read-more"><a title="{{ post.title }}" class="post-link" href="{{ post.url | prepend: site.baseurl }}">more→</a></p>
{% endfor %}
<ul>
{% for post in site.categories.css limit:4 offset:1 %}
<li><a title="{{ post.title }}" class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</section>
</div>
<div class="cols-md-1">
<section>
{% for post in site.categories.html limit:1 offset:0 %}
<header>
<span><a title="HTML" href="{{ site.baseurl }}/categories/html.html">HTML</a></span>
<h1><a title="{{ post.title }}" class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h1>
</header>
<p class="excerpt">
{{ post.content | strip_html | truncate: 100, "..." }}
</p>
<p class="read-more"><a title="{{ post.title }}" class="post-link" href="{{ post.url | prepend: site.baseurl }}">more→</a></p>
{% endfor %}
<ul>
{% for post in site.categories.html limit:4 offset:0 %}
<li><a title="{{ post.title }}" class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</section>
</div>
<div class="cols-md-1">
<section>
{% for post in site.categories.others limit:1 offset:0 %}
<header>
<span><a title="其它技术" href="{{ site.baseurl }}/categories/others.html">其它</a></span>
<h1><a title="{{ post.title }}" class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h1>
</header>
<p class="excerpt">
{{ post.content | strip_html | truncate: 100, "..." }}
</p>
<p class="read-more"><a title="{{ post.title }}" class="post-link" href="{{ post.url | prepend: site.baseurl }}">more→</a></p>
{% endfor %}
</section>
<ul>
{% for post in site.categories.others limit:4 offset:1 %}
<li><a title="{{ post.title }}" class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class="row row-recommend">
<div></div>
<div>
{% for post in site.tags.tips limit:2 %}
<div class="cols-md-2">
<section>
<h1><a title="{{ post.title }}" class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h1>
<p>
{{ post.content | strip_html | truncate: 100, "..." }}
</p>
</section>
</div>
{% endfor %}
</div>
</div>