blob: 317ee5801f4ed86131cda77213b9dcdb941f0713 (
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
|
<!doctype html>
<html>
<head>
<title>The Folkestone Gossip</title>
<link href='/css.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="header">
<div id='tags'></div>
</div>
<div id="body">
{% for entry in entrys %}
<div class='cell' data-id='{entry.id}'>
{entry.title}
</div>
{% endfor %}
</div>
<div id="about">
{% for page in pages %}
{% page.body %}
{% endfor %}
</div>
<div id="entry">
<div class='media'></div>
<h1></h1>
<div class='content'></div>
</div>
</body>
</html>
|