-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.23 KB
/
Copy pathindex.html
File metadata and controls
38 lines (38 loc) · 1.23 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
<!doctype html>
<html lang="en" data-framework="dojo">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Dojo • TodoMVC</title>
<link rel="stylesheet" href="node_modules/todomvc-common/base.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<section id="todoapp" data-dojo-type="todo/app18"></section>
<footer id="info">
<p>Double-click to edit a todo</p>
<p>Created by <a href="http://jamesthom.as/">James Thomas</a> and <a href="https://github.com/edchat">Ed Chatelain</a></p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
<!-- The base todomvc file adds tooltips and url redirection for todomvc demo
purposes and is not needed for the purpose of this example -->
<!-- <script src="node_modules/todomvc-common/base.js"></script> -->
<script>
require = {
async: true,
parseOnLoad: true,
locale: 'en',
baseUrl: './',
paths: {
todo: 'js/todo',
dojo: './node_modules/dojo',
dijit: './node_modules/dijit',
dojox: './node_modules/dojox'
},
deps: ['dojo/parser', 'dojo/domReady!'],
mvc: { debugBindings: true }
};
</script>
<script src="node_modules/dojo/dojo.js"></script>
</body>
</html>