-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (45 loc) · 1.42 KB
/
index.html
File metadata and controls
66 lines (45 loc) · 1.42 KB
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
66
---
layout: default
title:
description: 收集和记录前端开发的点点滴滴。
keywords: CSS,CSS3,HTML5,HTML,Javascript
isIndex: true
id: index
---
<ul class="post-listing">
{% for post in paginator.posts %}
<li class="post-item">
<article class="post">
<div class="entry">
<h2 class="post-title">
<a href="{{ post.url }}" title="{{ post.title }}" rel="bookmark">{{ post.title }}</a>
</h2>
<div class="meta">
{% if post.category %}
Posted in
• <span class="cat"><a href="/category/{{ post.category | slugize }}">{{ post.category }}</a></span>
{% endif %}
<span class="time">at {{ post.date | date: "%Y-%m-%d" }}</span>
by lxj
</div>
{% if post.tags %}
<div class="tags">
<span class="tag-list">
Tags:{% for tag in post.tags %}<a href="/tag/{{ tag| slugize }}" class="tag-item">{{ tag }}</a>,{% endfor %}
</span>
</div>
{% endif %}
</div>
<div class="post-content">
{{ post.excerpt }}
</div>
{% if post.content contains site.excerpt_separator %}
<p class="post-continue">
<a href="{{ post.url | prepend: site.baseurl }}">Read on →</a>
</p>
{% endif %}
</article>
</li>
{% endfor %}
</ul>
{% include pagination.html %}