-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathblog.html
More file actions
27 lines (27 loc) · 784 Bytes
/
blog.html
File metadata and controls
27 lines (27 loc) · 784 Bytes
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
---
layout: default
title: 博文
---
<ol class="archive">
{% for post in site.posts %}
<li>
<div class="excerpt">
<strong class="entry-title">
<a href="{{ post.url }}" title="{{ post.title }}" rel="bookmark">{{ post.title }}</a>
</strong>
<span class="date small">
<abbr class="published" title="{{ post.date }}">{{ post.date | date:"%Y年%m月%d日" }}</abbr>
</span>
<p class="alt-font">
分类:
{% for category in post.categories %}
<a href="/categories/{{ category }}" title="{{ category }}" rel="category tag">{{ category }}</a>
{% endfor %}
</p>
<p class="comments-link">
<a href='{{post.url}}#disqus_thread'>Comments</a>
</p>
</div>
</li>
{% endfor %}
</ol>