chromium/third_party/blink/perf_tests/speedometer21/resources/todomvc/functional-prog-examples/elm/index.html

<!doctype html>
<html lang="en" data-framework="elm">
<head>
    <meta charset="utf-8">
    <title>Elm • TodoMVC</title>
    <link rel="stylesheet" href="node_modules/todomvc-common/base.css">
    <link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
    <style>
        body {
            width: auto;
        }
        .todomvc-wrapper {
            visibility: visible !important;
        }
    </style>
</head>

<body>
<script src="dist/elm.js"></script>
<script>
    (function () {
        // var result = localStorage.getItem('elm-todo-model');
        // var savedModel = result ? JSON.parse(result) : null;
        var savedModel = null;
        var todomvc = Elm.Todo.fullscreen(savedModel);
        // todomvc.ports.save.subscribe(function (model) {
        //  localStorage.setItem('elm-todo-model', JSON.stringify(model));
        // });
    }());
</script>
</body>
</html>