-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
31 lines (25 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>Twitter Raffle</title>
<link rel="stylesheet" href="public/stylesheets/style.css"/>
</head>
<body>
<div id="app"><div id="raffle"><h1 class="clearfix">Twitter Raffle<span>By <a href='http://devcomo.com/'>dev/como</a></span></h1>
<div id="raffle-inner" class="clearfix"><p>Searching tweets for <input id="search" value="devcomo" /> <button id="select">Select a Winner</button></p><div id="winner"></div><ul id="tweets" class="clearfix"></ul></div><footer>
<a href='https://github.com/CoMoRichWebGroup/raffle-app'>Source code</a>
</footer></div></div>
<script id="tweet-template" type="text/template"> <img src="<%= profile_image_url %>"/>
<p>
<a target='_blank' href='http://twitter.com/<%= from_user %>'><%= from_user %></a>
</p>
<p>
<button class="remove">Remove</button>
</p>
</script>
<script type="text/javascript" src="public/javascripts/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="public/javascripts/underscore-min.js"></script>
<script type="text/javascript" src="public/javascripts/backbone-min.js"></script>
<script type="text/javascript" src="public/javascripts/application.js"></script>
</body>
</html>