-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (64 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grit:lab - todoMVC</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="learn-bar">
<aside class="learn">
<header>
<h3>JavaScript</h3> <span class="source-links">
<h5>Vanilla JavaScript Example</h5> <a
href="https://github.com/tastejs/todomvc/tree/gh-pages/examples/vanillajs">Source</a>
</span>
</header>
<hr>
<blockquote class="quote speech-bubble">
<p>JavaScript® (often shortened to JS) is a lightweight, interpreted, object-oriented language with
first-class functions, most known as the scripting language for Web pages, but used in many non-browser
environments as well such as node.js or Apache CouchDB.</p>
<footer> <a href="http://developer.mozilla.org/en-US/docs/JavaScript">JavaScript</a> </footer>
</blockquote>
<footer>
<hr> <em>If you have other helpful links to share, or find any of the links above no longer work, please <a
href="https://github.com/tastejs/todomvc/issues">let us know</a>.</em>
</footer>
</aside>
<section class="todoapp">
<header class="header">
<h1>todos</h1>
<input class="new-todo" placeholder="What needs to be done?" autofocus="">
</header>
<section class="main" style="display: none;">
<input id="toggle-all" class="toggle-all" type="checkbox">
<label for="toggle-all">Mark all as complete</label>
<ul class="todo-list"></ul>
</section>
<footer class="footer" style="display: none;">
<span class="todo-count"><strong>0</strong> items left</span>
<ul class="filters">
<li>
<a href="#/" class="selected">All</a>
</li>
<li>
<a href="#/active">Active</a>
</li>
<li>
<a href="#/completed">Completed</a>
</li>
</ul>
<button class="clear-completed" style="display: none;"></button>
</footer>
</section>
<footer class="info">
<p>Double-click to edit a todo</p>
<p>Created by <a href="http://twitter.com/oscargodson">Oscar Godson</a></p>
<p>Refactored by Viktor Thörnroos</p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
<script src="js/framework.js"></script>
<script src="js/app.js"></script>
</body>
</html>