-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.html
32 lines (28 loc) · 943 Bytes
/
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
---
layout: page
title: Skills
permalink: /categories/
---
{% for category in site.categories %}
<div class="catbloc" id="{{ category | first | remove:' ' }}">
<h2>{{ category | first }}</h2>
<ul>
{% for posts in category %}
{% for post in posts %}
{% if post.url %}
<li>
<a href="{{site.baseurl}}{{ post.url }}">
{{ post.title }} »
{% for tag in post.tags %}
<a href="{{site.baseurl}}/tags#{{ tag }}-ref" class='list-group-item'>
{{ tag }} <span class='badge'>{{ site.tags[tag].size }}</span>
</a>
{% endfor %}
</a>
</li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
{% endfor %}