-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (20 loc) · 828 Bytes
/
index.html
File metadata and controls
23 lines (20 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: default
---
<div class="main-post-list hidden">
<ol class="post-list">
{% for post in paginator.posts %}
<li>
<h2 class="post-list__post-title post-title"><a href="{{ post.url }}"
title="访问 {{ post.title }}">{{ post.title }}</a></h2>
<p class="excerpt">{{ post.content | strip_html | strip_newlines | truncate: 250 }}…</p>
<div class="post-list__meta"><time datetime="{{post.date | date: date_to_xmlschema}}"
class="post-list__meta--date date">{{ post.date | date: "%F"}}</time> • <span
class="post-list__meta--tags tags">{{ post.tags }}</span><a class="btn-border-small"
href={{ post.url }}>继续阅读</a></div>
<hr class="post-list__divider" />
</li>
{% endfor %}
</ol>
{% include pagination.html %}
</div>