chromium/third_party/blink/perf_tests/speedometer20/resources/todomvc/vanilla-examples/es2015/index.html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>ES2015 TodoMVC example</title>
    <link rel="stylesheet" href="node_modules/todomvc-common/base.css">
    <link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
  </head>
  <body>
    <section class="todoapp">
        <header class="header">
            <h1>todos</h1>
            <input class="new-todo" placeholder="What needs to be done?" autofocus>
        </header>

        <section class="main">
            <input class="toggle-all" type="checkbox">
            <label for="toggle-all">Mark all as complete</label>
            <ul class="todo-list"></ul>
        </section>

        <footer class="footer">
            <span class="todo-count"></span>
            <ul class="filters">
                <li><a href="#/" class="selected">All</a></li>
                <li><a href="#/active">Active</a></li>
                <li><a href="#/completed">Completed</a></li>
            </ul>
            <button class="clear-completed">Clear completed</button>
        </footer>
    </section>

    <footer class="info">
        <p>Double-click to edit a todo</p>
        <br>
        <p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
    </footer>
    <script src="src/controller.js"></script>
    <script src="src/helpers.js"></script>
    <script src="src/template.js"></script>
    <script src="src/store.js"></script>
    <script src="src/model.js"></script>
    <script src="src/view.js"></script>
    <script src="src/app.js"></script>
  </body>
</html>