-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
78 lines (63 loc) · 3.49 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
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
68
69
70
71
72
73
74
75
76
77
78
<!doctype html>
<!--[if lt IE 7 ]> <html lang="en" class="ie6"> <![endif]--> <!--[if IE 7 ]> <html lang="en" class="ie7"> <![endif]--> <!--[if IE 8 ]> <html lang="en" class="ie8"> <![endif]--> <!--[if IE 9 ]> <html lang="en" class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" manifest="application-cache.manifest"> <!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>QuickMag</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name = "viewport" content = "initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width, target-densityDpi=device-dpi">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="css/style.css?v=2">
<!--link rel="apple-touch-startup-image" href="img/app-splash.jpg"-->
<!-- iPad - landscape (748x1024) -->
<link rel="apple-touch-startup-image" href="img/app-splash-ipad-landscape.png" media="screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape)" />
<!-- iPad - portrait (768x1004) -->
<link rel="apple-touch-startup-image" href="img/app-splash-ipad-portrait.png" media="screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait)" />
<!-- iPhone - (320x460) -->
<link rel="apple-touch-startup-image" href="img/app-splash.png" media="screen and (min-device-width: 200px) and (max-device-width: 320) and (orientation:portrait)" />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid">
<div class='topbar'><div class='overlay-gradient'><h1>QuickMag</h1></div></div>
<script type="text/x-handlebars" data-template-name="item-list">
{{#each App.itemsController class="items"}}
{{#view App.ItemSummaryView contentBinding="this" class="item"}}
<h5>{{content.title}}</h5>
<hr/>
<p>{{content.description}}</p>
{{/view}}
{{/each}}
</script>
<script type="text/x-handlebars" data-template-name="item-modal">
<div class="modal-header">
<a href="#" class="close">×</a>
<h3>{{content.title}}</h3>
</div>
<div class="modal-body">
{{bind content.contentBody}}
</div>
<div class="modal-footer">
<a href="#" class="btn primary">Tweet</a>
<a href="#" class="btn secondary">Evernote</a>
</div>
</script>
</div>
<script>window.forge && document.write(unescape('%3Cscript src="https://trigger.io/catalyst/target/target-script-min.js#035E0F0A-8E48-43F2-A593-1FF44B43C61D"%3E%3C/script%3E'))</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="js/libs/jquery-1.6.1.min.js"%3E%3C/script%3E'))</script>
<script src="js/libs/transformjs.1.0.beta.2.min.js"></script>
<script src="js/libs/ember-0.9.3.min.js"></script>
<script src="js/libs/bootstrap/bootstrap-modal.min.js"></script>
<script src="js/libs/jquery.masonry.min.js"></script>
<script src="js/libs/ember-touch.min.js"></script>
<!--script src="js/libs/ember-data.js"></script-->
<script src="js/app.js"></script>
</body>
</html>