forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.html
73 lines (68 loc) · 1.99 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
66
67
68
69
70
71
72
73
---
layout: page
title: Categories
permalink: /categories/
---
{% comment %}
=======================
The following part extracts all the tags from your posts and sort tags, so
that you do not need to manually collect your tags to a place.
http://codinfox.github.io/blog/tags/
=======================
{% endcomment %}
{% assign rawtags = "" %}
{% for post in site.posts %}
{% assign ttags = post.categories | join:'|' | append:'|' %}
{% assign rawtags = rawtags | append:ttags %}
{% endfor %}
{% assign rawtags = rawtags | split:'|' | sort %}
{% comment %}
=======================
The following part removes dulpicated tags and invalid tags like blank tag.
=======================
{% endcomment %}
{% assign tags = "" %}
{% for tag in rawtags %}
{% if tag != "" %}
{% if tags == "" %}
{% assign tags = tag | split:'|' %}
{% endif %}
{% unless tags contains tag %}
{% assign tags = tags | join:'|' | append:'|' | append:tag | split:'|' %}
{% endunless %}
{% endif %}
{% endfor %}
{% comment %}
=======================
The purpose of this snippet is to list all the tags you have in your site.
=======================
{% endcomment %}
<div style="text-align: center;">
{% for tag in tags %}
<a href="#{{ tag | slugify }}">{{ tag }} </a>
{% endfor %}
</div>
{% comment %}
=======================
The purpose of this snippet is to list all your posts posted with a certain tag.
=======================
{% endcomment %}
{% for tag in tags %}
<h2 id="{{ tag | slugify }}"> {{ tag }}</h2>
<ul>
{% for post in site.posts %}
{% if post.categories contains tag %}
<li>
<a href="{{ post.url }}">
{{ post.title }}
<span style="font-size: small">({{ post.date | date:"%Y-%m-%d" }})</span>
</a>
{% for tag in post.tags %}
<a class="tag" href="{{ site.baseurl }}/blog/tag/#{{ tag | slugify }}">{{ tag }}</a>
{% endfor %}
</li>
{% endif %}
{% endfor %}
</ul>
<a style="font-size: small" href="{{ site.baseurl }}/categories/">[Go to top]</a>
{% endfor %}