-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtomatoes.html
58 lines (53 loc) · 1.95 KB
/
tomatoes.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Backbone Tomatoes</title>
<script data-main="js/init" src="js/libs/require.js"></script>
<script type="text/javascript" src="js/movie_data.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css" />
<link href="css/styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<a target="_blank" href="https://github.com/rochal/backbone-tomatoes"><img style="position: absolute; top: 0; right: 0; border: 0;z-index:99;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<div id="main">
<div class="navbar">
<div class="navbar-inner">
<a class="brand" href="#">Backbone Tomatoes</a>
<div class="form-search film-search">
<div class="input-append">
<div class="span2"></div>
<input type="text" class="span4 search-query" id="search">
<button type="submit" class="btn" id="searchBtn">Search</button>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span3">
<ul id="menu-holder" class="nav nav-list">
<!-- templates/menu.html -->
</ul>
</div>
<div class="span9">
<div id="film-list">
<!-- templates/film.html -->
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3112455-21']);
_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>
</body>
</html>