-
Notifications
You must be signed in to change notification settings - Fork 0
/
2tags.html
43 lines (41 loc) · 1.12 KB
/
2tags.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
---
title: Tags
layout: page_no_side
description: Just Remind Me What I Posted
header-img: "img/tag-bg.jpg"
permalink: /tags/
---
<!-- 标签云 -->
<div id='tag_cloud' class="tags">
{% for tag in site.tags %}
<a href="#{{ tag[0] }}" title="{{ tag[0] }}" rel="{{ tag[1].size }}">{{ tag[0] }}</a>
{% endfor %}
</div>
<!-- 标签列表 -->
{% for tag in site.tags %}
<div class="one-tag-list">
<span class="fa fa-tag listing-seperator" id="{{ tag[0] }}">
<span class="tag-text">{{ tag[0] }}</span>
</span>
{% for post in tag[1] %}
<!-- <li class="listing-item">
<time datetime="{{ post.date | date:"%Y-%m-%d" }}">{{ post.date | date:"%Y-%m-%d" }}</time>
<a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a>
</li> -->
<div class="post-preview">
<a href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title">
{{ post.title }}
</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
</a>
<!-- <p class="post-meta">{{ post.date | date:"%Y-%m-%d" }}</p> -->
</div>
<hr>
{% endfor %}
</div>
{% endfor %}