-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.55 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/main.js"></script>
<link href="//fonts.googleapis.com/css?family=Krona+One" rel="stylesheet" type="text/css">
<link type="text/css" rel="stylesheet" href="css/main.css" />
<title>Radiohead or Horse_ebooks</title>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-15678420-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="what"><a href="what.html">what</a></div>
{% if message %}
<div class="title">{{message}}</div>
{% else %}
<div class="title">Radiohead or Horse_ebooks?</div>
{% endif %}
<div class="quote">{{quote}}</div>
<form action="/" method="post">
<input type="hidden" name="quote_id" value={{quote_id}}></input>
<div class="buttons">
<input type="image" name="radiohead" class="radiohead_button"
value="radiohead" src="images/radiohead.png" alt="Radiohead"></input>
<input type="image" name="horse_ebooks" class="horse_ebooks_button"
value="horse_ebooks" src="images/horse_ebooks.jpg" alt="Horse_ebooks"></input>
</div>
</form>
</body>
</html>