-
Notifications
You must be signed in to change notification settings - Fork 2
/
page.lens
46 lines (44 loc) · 897 Bytes
/
page.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
<!DOCTYPE html>
<koken:include file="inc/header.html" />
<style>
button {
display: inline-block;
vertical-align: middle;
margin: 0 0 1rem 0;
font-family: inherit;
padding: 0.85em 1em;
-webkit-appearance: none;
border: 1px solid transparent;
border-radius: 0;
transition: background-color 0.25s ease-out, color 0.25s ease-out;
font-size: 0.9rem;
line-height: 1;
text-align: center;
cursor: pointer;
background-color: #1779ba;
color: #fefefe;
}
</style>
<koken:load>
<div class="container">
<article>
<h2>
<koken:link>
{{ page.title }}
</koken:link>
</h2>
<p>
<koken:time />
</p>
{{ page.content }}
</article>
</div>
<koken:else>
<koken:note>
No published essay found
</koken:note>
</koken:load>
<koken:include file="inc/footer.html" />
<!-- Scripts -->
<koken:asset file="js/theme.js" />
<koken:asset file="js/vendor/foundation.js" />