forked from jhne/norma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
set.lens
50 lines (50 loc) · 1.2 KB
/
set.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
<koken:include file="inc/components/header.html" />
<main role="main">
<koken:load>
<article class="top-section">
<p class="time"><koken:time />
<koken:categories>
<span class="categories"> / In
<koken:loop separator=", ">
<koken:link>
{{ category.title }}
</koken:link>
</koken:loop>
</span>
</koken:categories>
<koken:tags>
<span class="tags"> / Tagged
<koken:loop separator=", ">
<koken:link>
{{ tag.title }}
</koken:link>
</koken:loop>
</span>
</koken:tags>
</p>
<p class="album-name">{{ album.title }} </p>
<p class="album-desc">{{ album.description }} </p>
</article>
<ul class="grid">
<koken:loop>
<li>
<koken:link>
<koken:img crop="adaptive" />
<div>
<h3>{{ album.title }} </h3>
<p>{{ album.description }} </p>
</div>
</koken:link>
</li>
</koken:loop>
</ul>
<koken:include file="inc/components/share.html" />
<koken:else>
<koken:note>
No public albums found
</koken:note>
</div>
</koken:load>
</main>
</body>
</html>