-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.lens
128 lines (82 loc) · 3.61 KB
/
content.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<koken:include file="layouts/header.html" />
<koken:load>
<koken:head>
<meta property="og:site_name" content="{{ site.title }}" />
<meta property="og:title" content="{{ content.title|content.filename strip_html="true" }}" />
<meta property="og:description" content="{{ content.caption strip_html="true" }}" />
<meta property="og:type" content="website" />
<meta property="og:image" content="{{ content.presets.medium_large.url }}" />
<meta property="og:image:width" content="{{ content.presets.medium_large.width }}" />
<meta property="og:image:height" content="{{ content.presets.medium_large.height }}" />
<meta property="og:url" content="{{ content.url }}" />
<koken:content_image>
<koken:not empty="profile.twitter">
<meta name="twitter:card" content="photo" />
<meta name="twitter:site" content="@{{ profile.twitter }}" />
<meta name="twitter:creator" content="@{{ profile.twitter }}" />
</koken:not>
</koken:content_image>
</koken:head>
<div id="main" class="palign_{{ settings.page_align }}">
<div id="main_wrap" class="calign_{{ settings.content_align }}">
<koken:if true="settings.show_contents_link">
<div id="content_all_contents" class="archive_head">
<div style="float:right;">
<koken:parent>
<koken:variable name="previous_label" value="{{ language.previous }}" />
<koken:variable name="next_label" value="{{ language.next }}" />
<koken:else>
<koken:variable name="previous_label" value="{{ language.newer }}" />
<koken:variable name="next_label" value="{{ language.older }}" />
</koken:parent>
<koken:previous>
<koken:link class="pag back" title="{{ previous_label }}" bind_to_key="left">{{ previous_label }}</koken:link>
<koken:else>
</koken:previous>
<koken:next>
<koken:link class="pag next" title="{{ next_label }}" bind_to_key="right">{{ next_label }}</koken:link>
<koken:else>
</koken:next>
</div>
<koken:context>
<koken:link class="pag back" title="{{ language.view_title collate='context.title' }}">{{ context.title }}</koken:link>
<koken:else>
<koken:link class="pag back" to="contents" title="{{ language.view_all_content }}">{{ language.all_content }}</koken:link>
</koken:context>
</div>
</koken:if>
<figure id="content-{{ id }}" class="list_item">
<div class="item_media clear" data-koken-ignore-responsive="true">
<koken:content_image>
<span class="img_wrap" data-koken-ignore-responsive="true">
<koken:if true="settings.show_share">
<koken:if true="content.public">
<koken:include file="layouts/share_content.html" />
</koken:if>
</koken:if>
<koken:img lazy="true" class="imgframe" />
<koken:if true="{{ settings.show_content_load_spin }}">
<koken:if data="settings.spin_style" equals="halfcirc"><div class="spinner_pos"><div class="spinner"></div></div></koken:if>
</koken:if>
</span>
</koken:content_image>
<koken:content_video>
<koken:video />
</koken:content_video>
</div>
<koken:if true="settings.show_exif || settings.show_date">
<koken:include file="layouts/media_meta.html" />
</koken:if>
<koken:include file="layouts/figcaption_content.html" />
<koken:max_download>
<p class="meta">
<koken:link title="{{ language.download_image }}">{{ language.download }} ({{ max_download.width }} x {{ max_download.height }})</koken:link>
</p>
</koken:max_download>
</figure>
</div>
</div>
</koken:load>
<koken:include file="layouts/footer.html" />