-
Notifications
You must be signed in to change notification settings - Fork 4
/
essays.lens
67 lines (59 loc) · 1.55 KB
/
essays.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
<koken:include file="layouts/header.html" />
<section id="main">
<div class="container">
<koken:if true="settings.custom_content">
<koken:not empty="settings.custom_pageid">
<koken:load source="page" filter:id="{{ settings.custom_pageid }}">
<h1>{{ page.title }}</h1>
{{ page.content }}
<koken:else>
<h1>{{ labels.essay.plural }}</h1>
Content not found for supplied page id
</koken:load>
<koken:else>
<h1>{{ labels.essay.plural }}</h1>
<koken:note>
For custom content, please set page id in Template Settings
</koken:note>
</koken:not>
<koken:else>
<h1>{{ labels.essay.plural }}</h1>
</koken:if>
<koken:load limit="10" infinite="true">
<koken:loop>
<div class="row">
<div class="col-md-12">
<hr>
<article>
<div class="heading">
<h1>
<koken:link>
{{ essay.title }}
</koken:link>
</h1>
<span>
<koken:link to="archive">
<koken:time />
</koken:link> |
</span>
<span>
{{ profile.name }}
</span>
</div>
<p>{{ essay.excerpt }}</p>
<p>
<koken:link title="{{ essay.title }}">Read More...</koken:link>
</p>
</article>
</div>
</div>
</koken:loop>
<koken:else>
<koken:include file="layouts/error.html" />
<koken:note>
No published essays found
</koken:note>
</koken:load>
</div>
</section>
<koken:include file="layouts/footer.html" />