-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.html
67 lines (67 loc) · 2.6 KB
/
dev.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
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang='lg'>
<head>
<meta content='text/html;charset=utf-8' http-equiv='Content-Type' />
<title>Ilvys kukne</title>
<meta content='Jurs & Vaļuks' name='author' />
<meta content='Ilvys kukne' name='description' />
<meta content='width=device-width, initial-scale=1.0' name='viewport' />
<!-- %link{'rel':'icon','href':'/favicon.ico','type':'image/x-icon'} -->
<link href='static/css/layout.css' rel='stylesheet' />
<!--[if lt IE 9]>
<script src='http://html5shim.googlecode.com/svn/trunk/html5.js'></script>
<![endif]--> </head>
<body>
<div class='container-fluid'>
<header>
<h1><a href="#">Ilvys kukne</a></h1>
</header>
<div class='row-fluid'>
<div class='span3'>
<div id='nav-products' class='well'></div>
<div id='nav-food' class='well'>
<h4>Recepti</h4>
</div>
</div>
<div class='span9'>
<div id='food'></div>
</div>
</div>
<footer>
<p>© Jurs i Valera 2012</p>
</footer>
</div>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script src='static/js/underscore-min.js'></script>
<script src='static/js/backbone-min.js'></script>
<script src='static/js/backbone.localStorage-min.js'></script>
<script type='text/javascript'>
// <![CDATA[
var App = {};
App.events = {};
App.language = 'lg';
_.extend(App.events, Backbone.Events);
// ]]>
</script>
<script src='static/js/bone/locale.js'></script>
<script src='static/js/bone/views.js'></script>
<script src='static/js/data/locale.lg.js'></script>
<script src='static/js/bone/product/models.js'></script>
<script src='static/js/bone/product/views.js'></script>
<script src='static/js/bone/food/models.js'></script>
<script src='static/js/bone/food/views.js'></script>
<script src='static/js/bone/router.js'></script>
<script src='static/js/data/products.lg.js'></script>
<script type='text/javascript'>
// <![CDATA[
(function(){
App.products = new App.CollectionProducts(__products);
App.foods = new App.CollectionFoods();
App.foods.fetch();
new App.Router();
Backbone.history.start();
})();
// ]]>
</script>
</body>
</html>