-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcategories.html
More file actions
35 lines (32 loc) · 836 Bytes
/
categories.html
File metadata and controls
35 lines (32 loc) · 836 Bytes
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
---
layout: page
title: Categories
---
<article class="categories">
<div class="lost-cat lost-blockbox fn-clear">
{% for cat in site.categories %}
<p>
§ <a href="#{{ cat[0] }}-ref" title="{{ cat[0] }}" class="lost-ul-title" rel="{{ cat[1].size }}">{{ cat[0] }}</a>
<sup>({{ cat[1].size }})</sup>
</p>
{% endfor %}
</div>
</article>
<section class="category" class="fn-clear">
<article class="fn-clear">
{% for cat in site.categories %}
<ul>
<li>
<span id="{{ cat[0] }}-ref" class="lost-ul-title" rel="bookmark"> {{ cat[0] }}</span>
<ul class="lost-cat fn-clear">
{% for post in cat[1] %}
<li>
<span class="lost-date">{{ post.date| date: "%B %e,%Y" }}</span> » <span><a href='{{ post.url }}'>{{post.title}}</a></span>
</li>
{% endfor %}
</ul>
</li>
</ul>
{% endfor %}
</article>
</section>