forked from Huxpro/huxblog-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.html
65 lines (61 loc) · 2.13 KB
/
categories.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
53
54
55
56
57
58
59
60
61
62
63
64
65
---
title: Categories
layout: default
order: 1
description: keep hungry keep foolish
header-img: "img/tag-bg.jpg"
---
<!-- Page Header -->
<header class="intro-header" style="background-image: url('{{ site.baseurl }}/{% if page.header-img %}{{ page.header-img }}{% else %}{{ site.header-img }}{% endif %}')">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="site-heading" id="tag-heading">
<h1>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</h1>
<span class="subheading">{{ page.description }}</span>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<!-- 类云 -->
<div id='tag_cloud' class="tags">
{% for tag in site.categories %}
<a href="#{{ tag[0] }}" title="{{ tag[0] }}" rel="{{ tag[1].size }}">{{ tag[0] }}</a>
{% endfor %}
</div>
<!-- 类列表 -->
{% for tag in site.categories %}
<div class="one-tag-list">
<span class="fa fa-archive listing-seperator" id="{{ tag[0] }}">
{{ 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">
<i class="fa fa-circle-thin"></i> {{ 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 %}
</div>
</div>
</div>