-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (46 loc) · 1.7 KB
/
index.html
File metadata and controls
52 lines (46 loc) · 1.7 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Curso Básico de Backbone.js</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/bootstrap-3.0.3.min.css">
<style>
body {
font-family: 'Open Sans', Arial;
}
</style>
</head>
<body id="app">
<!-- <p>Bienvenidos al Curso básico de Backbone.js</p>
<small>Producido por @Devcodela</small>
<br><br>
<div class="bookstore-view">
<div class="changeColor">Change the color text</div>
</div>
<br>
<div id="tplSample">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque odio tellus,
viverra vitae egestas mollis, rutrum sed urna. Integer venenatis consectetur dolor
a ullamcorper. Fusce et tempor odio, ac imperdiet purus.</p>
</div>-->
<div class="books">
<h1>Books</h1>
</div>
<script type="text/templates" id="tplShowBook">
<h2><%= title %></h2>
<p><%= author %></p>
<small><%= category %></small>
<hr>
</script>
<!-- Javascript libraries -->
<script src="js/vendor/jquery-2.0.3.min.js" type="text/javascript"></script>
<script src="js/vendor/bootstrap-3.0.3.min.js" type="text/javascript"></script>
<script src="js/vendor/underscore-1.5.2-min.js" type="text/javascript"></script>
<script src="js/vendor/backbone-1.1.0-min.js" type="text/javascript"></script>
<!-- App Backbone.js -->
<script src="js/backbone/models/book.js" type="text/javascript"></script>
<script src="js/backbone/collections/books.js" type="text/javascript"></script>
<script src="js/backbone/views/bookstore.js" type="text/javascript"></script>
</body>
</html>