-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
105 lines (91 loc) · 3.67 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Leaf List</title>
<meta name="description" content="A disposable list">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="assets/css/pure.css">
<link rel="stylesheet" href="assets/css/app.css">
<script src="js/lib/jquery.min.js"></script>
<script src="js/lib/underscore-min.js"></script>
<script src="js/lib/backbone-min.js"></script>
<script src="js/lib/firebase.min.js"></script>
<script src="js/lib/backbone-firebase.min.js"></script>
<script src="js/lib/modernizr-2.6.2.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<div class="pure-g-r">
<div class="pure-u-1-3">
<section id="dlistapp">
<section class="head">
<h1>
<!-- <img src="assets/icon.png" class="icon"> -->
Leaf List
</h1>
<h3>Disposable lists for your use</h3>
</section>
<div class="loader">
<img src="assets/loader.gif" alt="">
</div>
<section id="main" class="loader">
<ul id="dlist" data-id="0">
<li id="new-item">
<label contenteditable>Add an Item</label>
</li>
</ul>
</section>
<section class="buttons">
<a id="clear" class="pure-button pure-button-error small">Clear</a>
<a href="./" id="new" class="pure-button small pure-button-secondary">New</a>
</section>
</section>
<section class="note">
</section>
<section class="footer">
<span class="about">
<a href="http://shashankmehta.in/leaflist/#leaflst" target="_blank">About</a> the app
</span>
<span>
Made by <a href="http://shashankmehta.in">Shashank Mehta</a>
</span>
<span>
Fork on <a href="http://github.com/shashankmehta/leaflist">GitHub</a>
</span>
</section>
</div>
</div>
<script type="text/template" id="item-template">
<label contenteditable data-id=<%- id%>>
<%- title %>
</label>
<button class="destroy">
</button>
</script>
<script type="text/template" id="sublist-template">
<ul>
</ul>
<button class="addItem"></button>
</script>
<script src="js/models/item.js"></script>
<script src="js/collections/list.js"></script>
<script src="js/views/item.js"></script>
<script src="js/views/page.js"></script>
<script src="js/routers/router.js"></script>
<script src="js/app.js"></script>
<a href="https://github.com/shashankmehta/leaflist"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_red_aa0000.png" alt="Fork me on GitHub"></a>
<script>
var _gaq=[['_setAccount','UA-32545112-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src='//www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>