-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (53 loc) · 1.61 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
---
layout: default
---
<div class="home">
<h1 class="page-heading">Posts</h1>
<ul class="post-list">
<h1>思考</h1>
<ul>
{% for post in site.posts %}
{% if post.categories contains "Thoughts" %}
<li>
<span class="post-meta">{{ post.date | date: "%Y-%m-%d" }}</span>
<a class="" href="{{ post.url | prepend: site.baseurl }}">{{ post.title | escape }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
<h1>读书</h1>
<ul>
{% for post in site.posts %}
{% if post.categories contains "Reading" %}
<li>
<span class="post-meta">{{ post.date | date: "%Y-%m-%d" }}</span>
<a class="" href="{{ post.url | prepend: site.baseurl }}">{{ post.title | escape }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
<h1>技术</h1>
<ul>
{% for post in site.posts %}
{% if post.categories contains "Tech" %}
<li>
<span class="post-meta">{{ post.date | date: "%Y-%m-%d" }}</span>
<a class="" href="{{ post.url | prepend: site.baseurl }}">{{ post.title | escape }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
<h3>Mesos</h3>
<ul>
{% for post in site.posts %}
{% if post.categories contains "Mesos" %}
<li>
<span class="post-meta">{{ post.date | date: "%Y-%m-%d" }}</span>
<a class="" href="{{ post.url | prepend: site.baseurl }}">{{ post.title | escape }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>