-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (47 loc) · 1.16 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
---
layout: default
---
<div class="home">
<h1 class="page-heading"> <font color="#E76354">文章</font>
</h1>
<ul class="post-list">
{% for post in site.posts %}
<div class="panel">
<div class="panel-content">
<li>
<p>
<h2 align="center">
<a href="{{ post.url }}"> <font color="#E76354">{{ post.title }}</font>
</a>
</h2>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
</p>
<p>{{ post.content | strip_html | truncatewords: 25 }}</p>
<p>
<a href="{{ post.url }}"><font color="#E76354">Read more ...</font></a>
</p>
</li>
</div>
</div>
{% endfor %}
</ul>
</div>
<!--<p class="rss-subscribe">
subscribe
<a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a>
</p>
-->
<!-- {% for category in site.categories %}
<h2>{{ category | first }}</h2>
</span>
{{ category | last | size }}
</span>
<ul class="arc-list">
{% for post in category.last %}
<li>
{{ post.date | date:"%d/%m/%Y"}}
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
{% endfor %} -->