forked from Koken-Community-Support/OxyGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtag.lens
42 lines (42 loc) · 1.38 KB
/
tag.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
<koken:include file="inc/components/header.html" />
<koken:head>
<title>Shows {{ tag.title }} / {{ site.title }}</title>
</koken:head>
<main role="main">
<koken:load limit="{{ settings.content_index_limit }}" infinite="true">
<article class="top-section">
<h1 class="page-name">Shows {{ tag.title }}</h1>
</article>
<koken:loop>
<koken:event>
<koken:event_content>
<koken:content_image>
<ul class="grid">
<li>
<koken:link title="View {{ content.title | content.filename }}" lightbox="{{ settings.use_lightbox }}">
<koken:img size="{{ settings.grid_asp_ratio }}" lazy="true" class="preview" alt="{{ content.title | content.filename }}"/>
<koken:if data="settings.hide_title_overlay" equals="true">
<div><h3>{{ content.title | content.filename }}</h3></div>
</koken:if>
</koken:link>
</li>
</ul>
</koken:content_image>
</koken:event_content>
</koken:event>
</koken:loop>
<koken:else>
<koken:note>
No album data found
</koken:note>
</koken:load>
<koken:include file="inc/components/loading_msg.html" />
<koken:if data="settings.footer_setting" equals="tiny_footer">
<koken:include file="inc/components/footer_tiny.html" />
</koken:if>
<koken:if data="settings.footer_setting" equals="show_footer">
<koken:include file="inc/components/footer.html" />
</koken:if>
</main>
</body>
</html>