-
Notifications
You must be signed in to change notification settings - Fork 9
/
2tags.html
81 lines (75 loc) · 2.98 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
title: 标签
layout: default
permalink: /tags/
description: 但知行好事,莫要问前程
header-img: "img/post-bg-dutbc.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.tags %}
<a href="#{{ tag[0] }}" title="{{ tag[0] }}" rel="{{ tag[1].size }}">{{ tag[0] }}</a>
{% endfor %}
</div>
<!-- 浮动标签云 -->
<div id='tag_cloud' class="tags" style="border:1px solid gray;position:fixed;right:15px;top:235px;background:#0085a1;z-index:9999;">
<select name="mylink" id="mylink" onchange="window.location=mylink.value">
<option value="../tags/#" selected>选择跳转标签</option>
{% for tag in site.tags %}
<option value="../tags/#{{ tag[0] }}">{{ tag[0] }}</option>
{% endfor %}
</select>
</div>
<!--<blockquote class="tag-comments">
标签命名规范:
<li>行业观察、职位、公司优先使用中文</li>
<li>外国产品、术语优先使用英文</li>
</blockquote>-->
<!-- 标签列表 -->
{% 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 }}" target="_blank">
<h2 class="post-title">
{{ post.title }} <font color="brown">[{{ post.date | date: "%Y-%m-%d" }}]</font>
</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>