diff options
author | Robert Jaros <rjaros@finn.pl> | 2018-01-31 00:10:58 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2018-01-31 00:10:58 +0100 |
commit | facf7991ed52cb21852dd6175a3817e94598c2dc (patch) | |
tree | aa4364769bbe0c3d637af8061761ef32c2234c37 /examples/todomvc/src/main/web/index.html | |
parent | a3514f0ea18313d37b9701e055f97f7ad81f76c4 (diff) | |
download | kvision-facf7991ed52cb21852dd6175a3817e94598c2dc.tar.gz kvision-facf7991ed52cb21852dd6175a3817e94598c2dc.tar.bz2 kvision-facf7991ed52cb21852dd6175a3817e94598c2dc.zip |
TodoMVC example
Diffstat (limited to 'examples/todomvc/src/main/web/index.html')
-rw-r--r-- | examples/todomvc/src/main/web/index.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/todomvc/src/main/web/index.html b/examples/todomvc/src/main/web/index.html new file mode 100644 index 00000000..e5ba8812 --- /dev/null +++ b/examples/todomvc/src/main/web/index.html @@ -0,0 +1,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> |