-
Notifications
You must be signed in to change notification settings - Fork 0
/
categories.html
50 lines (47 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
---
layout: page
title: Categories
---
<div class="col-sm-3 col-xs-9">
<ul class="nav nav-tabs-vertical">
{% assign categories_list = site.categories %}
{% if categories_list.first[0] == null %}
{% for category in categories_list %}
<li>
<a href="{{ site.BASE_PATH }}/{{ site.categories_path }}#{{ category | replace:' ','-' }}-ref" data-toggle="tab">
{{ category | capitalize }} <span class="badge pull-right">{{ site.categories[category].size }}</span>
</a>
</li>
{% endfor %}
{% else %}
{% for category in categories_list %}
<li>
<a style="font-family:ubuntu; color:#666;font-weight:bold" href="{{ site.BASE_PATH }}/{{ site.categories_path }}#{{ category[0] | replace:' ','-' }}-ref" data-toggle="tab">
{{ category[0] | capitalize }} <span class="badge pull-right">{{ category[1].size }}</span>
</a>
</li>
{% endfor %}
{% endif %}
{% assign categories_list = nil %}
</ul>
</div>
<!-- Tab panes -->
<div class="tab-content col-sm-9 col-xs-6">
{% for category in site.categories %}
<div class="tab-pane" id="{{ category[0] | replace:' ','-' }}-ref">
<h2 style="margin-top: 0px;font-weight:bold;font-family: ubuntu;">Posts in {{ category[0] | capitalize }}</h2>
<ul class="list-unstyled">
{% assign pages_list = category[1] %}
{% for node in pages_list %}
{% if node.title != null %}
{% if group == null or group == node.group %}
<li style="line-height: 35px;"><a href="{{ site.BASE_PATH }}{{node.url}}" style="font-family: 'Raleway', sans-serif; color:#333;font-weight:bold">{{node.title}}</a> <span class="text-muted">- {{ node.date | date: "%B %d, %Y" }}</span></li>
{% endif %}
{% endif %}
{% endfor %}
{% assign pages_list = nil %}
</ul>
</div>
{% endfor %}
</div>
<div class="clearfix"></div>