mirror of
https://github.com/kaka111222333/kaka111222333.github.io.git
synced 2025-12-17 07:18:44 +08:00
37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
---
|
|
layout: page
|
|
title: Tag
|
|
permalink: /tags/
|
|
icon: octicon-tag
|
|
isNavItem: true
|
|
styles: [tagCloud.css,tags.css]
|
|
scripts: [tagCloud.js,tags.js]
|
|
---
|
|
|
|
<div class="tagCloud">
|
|
{% for tag in site.tags %}
|
|
<a href="#{{ tag | first }}">{{ tag | first }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div>
|
|
<ul class="tag-box inline">
|
|
{% for tag in site.tags %}
|
|
<li><a href="#{{ tag | first }}">{{ tag | first }}<span>{{ tag | last | size }}</span></a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
{% for tag in site.tags %}
|
|
<h2 id="{{ tag | first }}">{{ tag | first }}</h2>
|
|
<ul>
|
|
{% for posts in tag %}{% for post in posts %}{% if post.title != null %}
|
|
<li itemscope><span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date_to_string }}</time></span> » <a href="{{ post.url | prepend: site.baseurl | prepend: site.url }}">{{ post.title }}</a></li>
|
|
{% endif %}{% endfor %}{% endfor %}
|
|
</ul>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
|