|
| 1 | +<!doctype html> |
| 2 | +<html lang="en" data-framework="react"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <title>OrbitDB • TodoMVC</title> |
| 6 | + <link rel="stylesheet" href="lib/base.css"> |
| 7 | + <link rel="stylesheet" href="lib/index.css"> |
| 8 | + <link rel="stylesheet" href="src/app.css"> |
| 9 | + </head> |
| 10 | + <body> |
| 11 | + <section class="todoapp"></section> |
| 12 | + <footer class="info"> |
| 13 | + <p>Double-click to edit a todo</p> |
| 14 | + <p>Created by <a href="http://github.com/haadcode/">Haad</a></p> |
| 15 | + <p>Based on <a href="https://github.com/tastejs/todomvc/tree/master/examples/react">React</a> <a href="http://todomvc.com">TodoMVC</a></p> |
| 16 | + </footer> |
| 17 | + |
| 18 | + <script src="lib/base.js"></script> |
| 19 | + <script src="lib/react-with-addons.js"></script> |
| 20 | + <script src="lib/classnames.js"></script> |
| 21 | + <script src="lib/JSXTransformer.js"></script> |
| 22 | + <script src="lib/director.js"></script> |
| 23 | + <script src="lib/orbitdb.min.js"></script> |
| 24 | + <script src="lib/ipfs.min.js"></script> |
| 25 | + |
| 26 | + <!-- OrbitDB --> |
| 27 | + <script type="text/javascript" src="src/store.js"></script> |
| 28 | + |
| 29 | + <!-- Todo MVC --> |
| 30 | + <script src="src/utils.js"></script> |
| 31 | + <script src="src/todoModel.js"></script> |
| 32 | + <!-- jsx is an optional syntactic sugar that transforms methods in React's |
| 33 | + `render` into an HTML-looking format. Since the two models above are |
| 34 | + unrelated to React, we didn't need those transforms. --> |
| 35 | + <script type="text/jsx" src="src/todoItem.jsx"></script> |
| 36 | + <script type="text/jsx" src="src/footer.jsx"></script> |
| 37 | + <script type="text/jsx" src="src/app.jsx"></script> |
| 38 | + </body> |
| 39 | +</html> |
0 commit comments