|
| 1 | +<!doctype html> |
| 2 | +<html lang="en" data-framework="javascript"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <title>VanillaJS • TodoMVC</title> |
| 6 | + <link rel="stylesheet" href="node_modules/todomvc-common/base.css"> |
| 7 | + <link rel="stylesheet" href="node_modules/todomvc-app-css/index.css"> |
| 8 | + </head> |
| 9 | + <body> |
| 10 | + <section class="todoapp"> |
| 11 | + <header class="header"> |
| 12 | + <h1>todos</h1> |
| 13 | + <input class="new-todo" placeholder="What needs to be done?" autofocus> |
| 14 | + </header> |
| 15 | + <section class="main"> |
| 16 | + <input id="toggle-all" class="toggle-all" type="checkbox"> |
| 17 | + <label for="toggle-all">Mark all as complete</label> |
| 18 | + <ul class="todo-list"></ul> |
| 19 | + </section> |
| 20 | + <footer class="footer"> |
| 21 | + <span class="todo-count"></span> |
| 22 | + <ul class="filters"> |
| 23 | + <li> |
| 24 | + <a href="#/" class="selected">All</a> |
| 25 | + </li> |
| 26 | + <li> |
| 27 | + <a href="#/active">Active</a> |
| 28 | + </li> |
| 29 | + <li> |
| 30 | + <a href="#/completed">Completed</a> |
| 31 | + </li> |
| 32 | + </ul> |
| 33 | + <button class="clear-completed">Clear completed</button> |
| 34 | + </footer> |
| 35 | + </section> |
| 36 | + <footer class="info"> |
| 37 | + <p>Double-click to edit a todo</p> |
| 38 | + <p>Created by <a href="http://twitter.com/oscargodson">Oscar Godson</a></p> |
| 39 | + <p>Refactored by <a href="https://github.com/cburgmer">Christoph Burgmer</a></p> |
| 40 | + <p>Part of <a href="http://todomvc.com">TodoMVC</a></p> |
| 41 | + </footer> |
| 42 | + <script src="node_modules/todomvc-common/base.js"></script> |
| 43 | + <script src="js/helpers.js"></script> |
| 44 | + <script src="js/store.js"></script> |
| 45 | + <script src="js/model.js"></script> |
| 46 | + <script src="js/template.js"></script> |
| 47 | + <script src="js/view.js"></script> |
| 48 | + <script src="js/controller.js"></script> |
| 49 | + <script src="js/app.js"></script> |
| 50 | + </body> |
| 51 | +</html> |
0 commit comments