rust-dominator/examples/todomvc/dist/index.html

21 lines
685 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>rust-dominator • TodoMVC</title>
<link rel="stylesheet" href="lib/todomvc-common/base.css">
<link rel="stylesheet" href="lib/todomvc-app-css/index.css">
</head>
<body>
<div id="app"></div>
<footer class="info">
<p>Double-click to edit a todo</p>
<p>Created by <a href="https://github.com/Pauan">Pauan</a></p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
<script src="lib/todomvc-common/base.js"></script>
<script src="js/index.js"></script>
</body>
</html>