-
Notifications
You must be signed in to change notification settings - Fork 2
/
archive.albums.lens
50 lines (50 loc) · 1.03 KB
/
archive.albums.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
<!DOCTYPE html>
<head>
<koken:meta />
<koken:title />
<koken:settings />
</head>
<body>
<header>
<h1>{{ site.title }}</h1>
<nav>
<koken:navigation />
</nav>
</header>
<koken:load>
<koken:breadcrumbs />
<h1>
<koken:if data="archive.type" equals="date">
All albums from {{ archive.title }}
</koken:if>
<koken:if data="archive.type" equals="tag">
All albums assigned the {{ archive.type.singular }} #{{ archive.title }}
</koken:if>
<koken:if data="archive.type" equals="category">
All albums assigned in the {{ archive.type.singular }} {{ archive.title }}
</koken:if>
</h1>
<ol class="grid">
<koken:loop>
<li>
<h2>
<koken:link>
{{ album.title }}
</koken:link>
</h2>
<koken:link>
<koken:img size="3:2" />
</koken:link>
</li>
</koken:loop>
</ol>
<koken:else>
<koken:note>
No public albums found
</koken:note>
</koken:load>
<footer>
{{ site.copyright }}
</footer>
</body>
</html>