UNPKG

todomvc

Version:

> Helping you select an MV\* framework

26 lines (25 loc) 1.02 kB
<!doctype html> <html lang="en" data-framework="mithril"> <head> <meta charset="utf-8"> <title>Mithril • TodoMVC</title> <link rel="stylesheet" href="bower_components/todomvc-common/base.css"> </head> <body> <section id="todoapp"></section> <footer id="info"> <p>Double-click to edit a todo</p> <p>Created by <a href="http://taylorhakes.com">Taylor Hakes</a> and <a href="http://blogue.jpmonette.net">Jean-Philippe Monette</a> <br>(Special thanks to <a href="https://github.com/lhorie/">Leo Horie</a>)</p> <p>Part of <a href="http://todomvc.com">TodoMVC</a></p> </footer> <script src="bower_components/todomvc-common/base.js"></script> <script src="bower_components/mithril/mithril.js"></script> <script src="js/models/todo.js"></script> <script src="js/models/storage.js"></script> <script src="js/controllers/todo.js"></script> <script src="js/views/main-view.js"></script> <script src="js/views/footer-view.js"></script> <script src="js/app.js"></script> </body> </html>