summaryrefslogtreecommitdiff
path: root/tags.html
blob: fa3e724c54d13d36fc2961dbfa0cf0f209ce454a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: page
title: Tags
header: Posts By Tag
group: navigation
---
{% include JB/setup %}

<ul class="tag_box inline">
  {% assign tags_list = site.tags order:decending %}  
  {% include JB/tags_list %}
</ul>


{% for tag in site.tags order:decending %} 
  <h2 id="{{ tag[0] }}-ref">{{ tag[0] }}</h2>
  <ul>
    {% assign pages_list = tag[1] %}  
    {% include JB/pages_list %}
  </ul>
{% endfor %}