This repository has been archived by the owner on Mar 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.lens
executable file
·112 lines (70 loc) · 2.4 KB
/
category.lens
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<koken:include file="inc/header.html" />
<koken:load>
<koken:head>
<meta property="og:site_name" content="{{ site.title }}" />
<meta property="og:title" content="{{ labels.category.plural }} / {{ category.title }}" />
<meta property="og:description" content="{{ site.description strip_html='true' }}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="{{ location.site_url }}{{ location.here }}" />
</koken:head>
<div id="mob-pag" class="content-row">
<div class="content-wrap">
<koken:previous>
<koken:link class="pag larr" title="View all content in the category {{ category.title }}" bind_to_key="left">{{ category.title }}</koken:link>
</koken:previous>
<koken:next>
<koken:link class="pag rarr" title="View all content in the category {{ category.title }}" bind_to_key="right">#{{ category.title }}</koken:link>
</koken:next>
</div>
</div>
<div class="content-row">
<div class="content-wrap">
<ul class="detail-nav">
<li>
<span class="l">
<koken:previous>
<koken:link class="pag larr" title="View all content in the category {{ category.title }}">#{{ category.title }}</koken:link>
</koken:previous>
</span>
<span class="m">
<h2 class="archive">
{{ category.title }}
</h2>
</span>
<span class="r">
<koken:next>
<koken:link class="pag rarr" title="View all content in the category {{ category.title }}">{{ category.title }}</koken:link>
</koken:next>
</span>
</li>
</ul>
</div>
</div>
<div id="grid" class="row no-rebalance">
<div class="one-third column elem"></div>
<div class="one-third column elem"></div>
<div class="one-third column elem"></div>
</div>
<koken:loop>
<koken:event>
<div class="item">
<koken:include file="inc/event_album.html" />
<koken:include file="inc/event_album_update.html" />
<koken:include file="inc/event_content.html" />
<koken:include file="inc/event_essay.html" />
</div>
</koken:event>
</koken:loop>
<koken:include file="inc/pagination.html" />
<koken:include file="inc/infinite-msg.html" />
<koken:include file="inc/like-tweet.html" />
<koken:asset file="js/grid.js" />
<koken:else>
<koken:note>
<strong>No albums found.</strong> Create some in the Library.
</koken:note>
<br>
<br>
</koken:load>
<koken:include file="inc/footer.html" />