blob: 57f223805f4b916eb326b277ab9b9f404878ef76 (
plain)
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
|
<!doctype html>
<html>
<head>
<title>The Folkestone Gossip</title>
<link href='/assets/css.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div id='header'>
<h1>The Folkestone Gossip</h1>
<div id='tags'></div>
</div>
<div id='body'>
{% for entry in entries %}
{% unless entry.disabled %}
<div class='cell' data-id='{{ entry.id }}'>
{{ entry.title }}
</div>
{% endunless %}
{% endfor %}
</div>
{% for page in pages %}
{% unless page.disabled %}
<div id='{{ page.id }}' class='page'>
<h2>{{ page.title }}</h2>
{{ page.body | newline_to_br }}
</div>
{% endunless %}
{% endfor %}
<div id='entry'>
<div class='close'>×</div>
<div class='media'></div>
<h2></h2>
<div class='content'></div>
</div>
</body>
<script src="/assets/jquery.min.js"></script>
<script src="/assets/site.js"></script>
</html>
|