-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.33 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
---
layout: default
title: linus, java, other, life
---
<div id="home">
<h2><i class="icon-bookmark"></i><a name="linus"> Linus的智慧</a></h2>
<ul id="blog-posts" class="posts">
{% for post in site.categories.linus %}
<li><span>{{ post.date | date_to_string }} »</span><a style="color:#3398DB;" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<h2><i class="icon-book"></i><a name="java"> 最爱的JAVA</a></h2>
<ul id="book-posts" class="posts">
{% for post in site.categories.java %}
<li><span>{{ post.date | date_to_string }} »</span><a style="color:#3398DB" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<h2><i class="icon-bullhorn"></i><a name="other"> 杂七杂八的技术</a></h2>
<ul id="talk-posts" class="posts">
{% for post in site.categories.other %}
<li><span>{{ post.date | date_to_string }} »</span><a style="color:#3389DB" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<h2><i class="icon-beaker"></i><a name="life"> 聊不完的生活……</a></h2>
<ul id="talk-posts" class="posts">
{% for post in site.categories.life %}
<li><span>{{ post.date | date_to_string }} »</span><a style="color:#3398DB;" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>