-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
38 lines (32 loc) · 922 Bytes
/
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
38
---
layout: page
title: 全部题解
description: 标签
permalink: /
---
{% include cate_list.html cate="总结" %}
<br>
<br>
<br>
<div class="tag-list">
{% for tag in site.tags %}
<a href="#{{ tag[0] }}">{{ tag[0] }} {{ tag[1] | size }}</a>
{% endfor %}
</div>
<p style="margin-bottom: 10px;">共计 {{site.posts | where: "dup", nil | size}} 篇</p>
<div class="category-list">
{% for tag in site.tags %}
<div class="">
<h3 id="{{ tag | first }}" class="m-list__title"><i class="icon iconfont icon-tag"></i>{{ tag | first }}</h3>
<ul class="m-list">
{% for post in tag.last | sort: 'qid' %}
{% if post.dup != true %}
<li class="list-item-inline">
<a href="{{site.base_path}}{{ post.url }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endfor %}
</div>