aboutsummaryrefslogtreecommitdiff
path: root/examples/todomvc/src/main/web/index.html
blob: e5ba88121cf1bf60464b75dc0e06f4d65217e1e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>KVision • TodoMVC</title>
    <link rel="stylesheet" href="node_modules/todomvc-common/base.css">
    <link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
</head>
<body>
<div id="todomvc"></div>
<footer class="info">
    <p>Double-click to edit a todo</p>
    <p>Created by <a href="https://github.com/rjaros">Robert Jaros</a></p>
    <p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
<!-- Scripts here. Don't remove ↓ -->
<script src="node_modules/todomvc-common/base.js"></script>
<script>var KV_NO_BOOTSTRAP_CSS = true;</script>
<script src="main.bundle.js"></script>
</body>
</html>