-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.25 KB
/
index.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
---
layout: post-index-animation
title:
description: "Describe this nonsense."
tags: [容器, JAVA, Spring, responsive, blog, modern]
comments: false
image:
feature: abstract-1.jpg
credit: dargadgetz
creditlink:description: "An archive of posts sorted by tag."
---
<div id="page-header">
<div id="page-nav">
<router-link to="/item/index" class="page-nav-item on-select">王守仁</router-link>
</div>
<div id="page-desc">
你未看此花时,此花与汝同归于寂
</div>
</div>
{% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
{% assign tags_list = site_tags | split:',' | sort %}
{% for item in (0..site.tags.size) %}{% unless forloop.last %}
{% capture this_word %}{{ tags_list[item] | strip_newlines }}{% endcapture %}
<div class="index-article">
<h2 id="{{ this_word }}" class="index-tag-heading">{{ this_word }}</h2>
{% assign post_list = site.tags[this_word] | sort %}
{% for post in post_list %}
{% if post.title != null %}
<div><a class="post-title" href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></div>
{% endif %}
{% endfor %}
</div><!-- /.hentry -->
{% endunless %}{% endfor %}