-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
35 lines (33 loc) · 1.29 KB
/
index.htm
File metadata and controls
35 lines (33 loc) · 1.29 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Vimeo API Test w/ Backbone.js</title>
<link href="Content/style.css" rel="stylesheet" type="text/css" />
<script id="vimeo-template" type="text/x-jquery-tmpl">
<li id="${htmlID}">
<a href="#!/message/${id}" title="${title}"><img src="${thumbnail_medium}" alt="${title}" /></a>
</li>
</script>
<script id="message-template" type="text/x-jquery-tmpl">
<h1>${title}</h1>
<iframe src="http://player.vimeo.com/video/${id}?title=0&byline=0&portrait=0" width="400" height="225" frameborder="0"></iframe>
<p>${description}</p>
<span><a href="http://vimeo.com/${id}">${title}</a> by ${user_name}.</span>
<a href="#!/home" title="Back">Back</a>
</script>
</head>
<body>
<div id="wrapper">
<a href="#!/latest" title="Latest">Latest</a>
<div id="main"></div>
</div>
<script src="Scripts/LAB.min.js" type="text/javascript"></script>
<script type="text/javascript">
$LAB.script("Scripts/jquery-1.6.min.js").wait()
.script("Scripts/jQuery.tmpl.min.js")
.script("Scripts/underscore.min.js")
.script("Scripts/backbone.min.js").wait()
.script("Scripts/centralaz.media.js");
</script>
</body>
</html>