UNPKG

todomvc

Version:

> Helping you select an MV\* framework

84 lines (83 loc) 2.27 kB
<!doctype html> <html lang="en" data-framework="yui"> <head> <meta charset="utf-8"> <title>YUI • 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" placeholder="What needs to be done?" autofocus> </header> <section id="main"> <input id="toggle-all" type="checkbox"> <label for="toggle-all">Mark all as complete</label> <ul id="todo-list"></ul> </section> <footer id="footer"></footer> </section> <footer id="info"> <p>Double-click to edit a todo</p> <p>Created by <a href="https://github.com/clarle">Clarence Leung</a> and <a href="https://twitter.com/ericf">Eric Ferraiuolo</a> </p> <p>Part of <a href="http://todomvc.com">TodoMVC</a></p> </footer> <script src="bower_components/todomvc-common/base.js"></script> <script type="text/x-handlebars-template" id="item-template"> <div class="view"> <input class="toggle" type="checkbox" {{#if completed}}checked{{/if}}> <label>{{title}}</label> <button class="destroy"></button> </div> <input class="edit" value="{{title}}"> </script> <script type="text/x-handlebars-template" id="stats-template"> <span id="todo-count"><strong>{{remaining}}</strong> {{pluralize remaining "item"}} 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> {{#if completed}} <button id="clear-completed">Clear completed ({{completed}})</button> {{/if}} </script> <script src="bower_components/todomvc-common/base.js"></script> <script src="js/lib/yui.js"></script> <script> YUI({ groups: { 'todo-mvc': { base: './js/', modules: { 'todo': { path: 'models/todo.js' }, 'todo-list': { path: 'models/todolist.js' }, 'todo-view': { path: 'views/todoview.js' }, 'todo-app': { path: 'app.js' } } } } }).use('todo-app', function (Y) { new Y.TodoMVC.TodoApp(); }); </script> </body> </html>