Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.
68 changes: 37 additions & 31 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,39 +1,45 @@
<!doctype html>
<html lang="en" data-framework="react">
<head>
<meta charset="utf-8">
<title>OrbitDB • TodoMVC</title>
<link rel="stylesheet" href="node_modules/todomvc-common/base.css">
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
<link rel="stylesheet" href="src/app.css">
</head>
<body>
<section class="todoapp"></section>
<footer class="info">
<p>Double-click to edit a todo</p>
<p>Created by <a href="http://github.com/haadcode/">Haad</a></p>
<p>Based on <a href="https://github.com/tastejs/todomvc/tree/master/examples/react">React</a> <a href="http://todomvc.com">TodoMVC</a></p>
</footer>

<script src="node_modules/todomvc-common/base.js"></script>
<script src="node_modules/react/dist/react-with-addons.js"></script>
<script src="node_modules/classnames/index.js"></script>
<script src="node_modules/react/dist/JSXTransformer.js"></script>
<script src="node_modules/director/build/director.js"></script>
<script src="node_modules/orbit-db/dist/orbitdb.min.js"></script>
<script src="node_modules/ipfs/dist/index.min.js"></script>
<head>
<meta charset="utf-8">
<title>OrbitDB • TodoMVC</title>
<link rel="stylesheet" href="node_modules/todomvc-common/base.css">
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
<link rel="stylesheet" href="src/app.css">
</head>

<!-- OrbitDB -->
<script type="text/javascript" src="src/store.js"></script>
<body>
<section class="todoapp"></section>
<footer class="info">
<p>Double-click to edit a todo</p>
<p>Created by <a href="http://github.com/haadcode/">Haad</a></p>
<p>Based on <a href="https://github.com/tastejs/todomvc/tree/master/examples/react">React</a> <a
href="http://todomvc.com">TodoMVC</a></p>
</footer>

<!-- Todo MVC -->
<script src="src/utils.js"></script>
<script src="src/todoModel.js"></script>
<!-- jsx is an optional syntactic sugar that transforms methods in React's
<script src="node_modules/classnames/index.js"></script>
<script src="https://fb.me/react-with-addons-0.14.3.js"></script>
<script src="https://fb.me/react-dom-0.14.3.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script src="node_modules/director/build/director.js"></script>
<script src="node_modules/todomvc-common/base.js"></script>
<script src="node_modules/orbit-db/dist/orbitdb.min.js"></script>
<script src="node_modules/ipfs/dist/index.min.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>

<!-- OrbitDB -->
<script type="text/javascript" src="src/store.js"></script>

<!-- Todo MVC -->
<script src="src/utils.js"></script>
<script src="src/todoModel.js"></script>
<!-- jsx is an optional syntactic sugar that transforms methods in React's
`render` into an HTML-looking format. Since the two models above are
unrelated to React, we didn't need those transforms. -->
<script type="text/jsx" src="src/todoItem.jsx"></script>
<script type="text/jsx" src="src/footer.jsx"></script>
<script type="text/jsx" src="src/app.jsx"></script>
</body>
<script type="text/jsx" src="src/todoItem.jsx"></script>
<script type="text/jsx" src="src/footer.jsx"></script>
<script type="text/jsx" src="src/app.jsx"></script>
</body>

</html>
Loading