blob: 9df79fc12736e61b6b349703f814ef1fd602a01d (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<!doctype html>
<html>
<head>
<title>How to make a Folkestone.</title>
<link href='/assets/css.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div id='header'>
<center>
<h1>How to make a Folkestone.</h1>
<a href="https://docs.google.com/forms/d/10dqrK_3UZW_xlPWQLERd0xTwVONryyicNuz2aYz3X_I/edit?c=0&w=1"<h2>Participate!</h2></a>
<div id='tags'></div>
</center>
</div>
<br>
<div id='body'>
<center>
{% for entry in entries %}
{% unless entry.disabled %}
<div class='cell' data-id='{{ entry.id }}'>
{{ entry.title }}
</div>
{% endunless %}
{% endfor %}
</center>
</div>
<center>
<div id='footer'>
<div class='cell' data-id='{{ testimonial.id }}'>
</div>
<div class='cell' data-id='{{ developer.id }}'>
</div>
<a href="http://howtomakeafolkestone.life/acknowledgements">
Acknowledgements</a>
</div>
</center>
{% 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>
|