summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/emberjs-debug/source/app/templates/application.hbs
blob: 519b620cd63018f673eaa9a7b908d5898a92158f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<section id="todoapp">
  <header id="header">
    <h1>todos</h1>
    <input type="text" id="new-todo" onkeydown={{action 'createTodo'}} placeholder="What needs to be done?" autofocus>
  </header>
    {{outlet}}
    {{#if (gt model.length 0)}}
      <footer id="footer">
        <span id="todo-count"><strong>{{remaining.length}}</strong> {{pluralize 'item' remaining.length}} left</span>
        <ul id="filters">
          <li>{{#link-to "index" activeClass="selected"}}All{{/link-to}}</li>
          <li>{{#link-to "active" activeClass="selected"}}Active{{/link-to}}</li>
          <li>{{#link-to "completed" activeClass="selected"}}Completed{{/link-to}}</li>
        </ul>
        {{#if completed.length}}
          <button id="clear-completed" onclick={{action 'clearCompleted'}}>Clear completed</button>
        {{/if}}
      </footer>
    {{/if}}
</section>
<footer id="info">
  <p>Double-click to edit a todo</p>
  <p>
    Created by
    <a href="http://github.com/cibernox">Miguel Camba</a>,
    <a href="http://github.com/addyosmani">Addy Osmani</a>
  </p>
  <p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>