blob: ad198a01507ac1761ad4c23bc21aa62190a06def (
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
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Stories from the Folkestone Triennale." />
<meta name="author" content="Catalina Vallejos">
<meta property="og:title" content="How To Make A Folkestone." />
<meta property="og:type" content="website" />
<meta property="og:image" content="http://howtomakeafolkestone.life/assets/header.jpg" />
<meta property="og:url" content="http://howtomakeafolkestone.life/" />
<meta property="og:site_name" content="Tree" />
<meta name="apple-mobile-web-app-capable" content="no">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>How to make a Folkestone.</title>
</head>
<body style='background-color:black'>
<div style='opacity:0' id='entries'>
{% for entry in entries %}
<a href='/entry/{{ entry.id }}'>{{ entry.title }}</a>
{% endfor %}
</div>
</body>
<script src="http://www.youtube.com/player_api"></script>
<script>
window.location.href=document.getElementById('entries').children[0].href
</script>
</html>
|