UNPKG

todomvc

Version:

> Helping you select an MV\* framework

33 lines (31 loc) 938 B
<!doctype html> <html lang="en" data-framework="dojo"> <head> <meta charset="utf-8"> <title>Dojo • TodoMVC</title> <link rel="stylesheet" href="bower_components/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> <script src="bower_components/todomvc-common/base.js"></script> <script> require = { async: true, parseOnLoad: true, locale: 'en', paths: { dijit: '../dijit-1.8' }, deps: ['dojo/parser', 'dojo/domReady!'], mvc: { debugBindings: true } }; </script> <script src="js/lib/dojo-1.8/dojo.js"></script> </body> </html>