UNPKG

todomvc

Version:

> Helping you select an MV\* framework

56 lines (55 loc) 1.92 kB
<!doctype html> <html lang="en" data-framework="agilityjs"> <head> <meta charset="utf-8"> <title>Agility.js • TodoMVC</title> <link rel="stylesheet" href="bower_components/todomvc-common/base.css"> </head> <body> <section id="todoapp"> <header id="header"> <h1>todos</h1> <input id="new-todo" type="text" data-bind="newtitle" placeholder="What needs to be done?" autofocus> </header> <section id="main" data-bind="class = mainStyle"> <input id="toggle-all" type="checkbox"> <label for="toggle-all">Mark all as complete</label> <ul id="todo-list"> <li> <div class="view"> <input class="toggle" type="checkbox" data-bind="completed"> <label data-bind="title"></label> <button class="destroy"></button> </div> <input class="edit" data-bind="title"> </li> </ul> </section> <footer id="footer" data-bind="class = mainStyle"> <span id="todo-count"><strong data-bind='todoCount'></strong> item<span data-bind='pluralizer'></span> left</span> <ul id="filters"> <li> <a class="selected" href="#/">All</a> </li> <li> <a href="#/active">Active</a> </li> <li> <a href="#/completed">Completed</a> </li> </ul> <button id="clear-completed" data-bind="class = clearBtnStyle">Clear completed (<span data-bind="completedCount"></span>)</button> </footer> </section> <footer id="info"> <p>Double-click to edit a todo</p> <p>Created by <a href="http://github.com/tshm/todomvc/">Tosh Shimayama</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/jquery/jquery.js"></script> <script src="bower_components/agility/agility.js"></script> <script src="js/localstorage.js"></script> <script src="js/app.js"></script> </body> </html>