-
Notifications
You must be signed in to change notification settings - Fork 1
/
lists.html
56 lines (49 loc) · 1.31 KB
/
lists.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
---
permalink: /collecting/lists/
layout: default
title: " ~ Lists"
---
<ul class="reset-list list list--inline list--breadcrumb utility-font-size-80">
<li><a href="/">Home</a></li>
<li><a href="/collecting/">Collecting</a></li>
<li><span>Lists</span></li>
</ul>
<h1 class="heading heading--alpha">Collecting: lists</h1>
<ul class="reset-list list--divided">
{% for post in site.categories.lists %}
{% include posts.html %}
{% endfor %}
</ul>
<!-- <ul class="reset-list list--divided">
{% for item in site.collecting reversed | sort: 'date' %}
{% if item.category contains 'lists' %}
<li>
<article class="h-entry">
<h1 class="p-description">
<a class="u-url u-syndication" href="{{ item.url }}" rel="syndication">{{ item.title }}</a>
</h1>
<p class="p-name e-content">
{{ item.posse }}
</p>
<footer class="utility-font-size-80">
<ul class="meta">
{% if item.author %}
<li>
Article author: {{ item.author }}
</li>
{% endif %}
<li>
Collected: <time class="dt-published" datetime="{{ item.date | date: "%d %B %Y" }}">{{ item.date | date: "%d %B %Y" }}</time>
</li>
</ul>
</footer>
</article>
</li>
{% endif %}
{% endfor %} -->
</ul>
<!-- ---
permalink: /collecting/lists/
layout: default
---
-->