OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html lang="en"> | 2 <html lang="en"> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | 5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
6 <title>Polymer.dart • TodoMVC</title> | 6 <title>Polymer.dart • TodoMVC</title> |
7 <link rel="stylesheet" href="app/app.css"> | 7 <link rel="stylesheet" href="app/app.css"> |
8 <link rel="import" href="packages/polymer/polymer.html"> | 8 <link rel="import" href="packages/polymer/polymer.html"> |
9 <link rel="import" href="lib-elements/polymer_localstorage.html"> | 9 <link rel="import" href="lib-elements/polymer_localstorage.html"> |
10 <link rel="import" href="elements/td_model.html"> | 10 <link rel="import" href="elements/td_model.html"> |
11 <link rel="import" href="elements/td_todos.html"> | 11 <link rel="import" href="elements/td_todos.html"> |
12 <script type="application/dart">export 'package:polymer/init.dart';</script> | |
13 </head> | 12 </head> |
14 <body> | 13 <body> |
15 <header> | 14 <header> |
16 <h1>todos</h1> | 15 <h1>todos</h1> |
17 </header> | 16 </header> |
18 <polymer-localstorage id="storage" name="todos-polymer"> | 17 <polymer-localstorage id="storage" name="todos-polymer"> |
19 </polymer-localstorage> | 18 </polymer-localstorage> |
20 <td-model id="model" storageId="storage"></td-model> | 19 <td-model id="model" storageId="storage"></td-model> |
21 <td-todos modelId="model"></td-todos> | 20 <td-todos modelId="model"></td-todos> |
22 <footer id="info"> | 21 <footer id="info"> |
23 <p>Double-click to edit a todo</p> | 22 <p>Double-click to edit a todo</p> |
24 <p>Created by <a href="https://www.dartlang.org/polymer-dart/"> | 23 <p>Created by <a href="https://www.dartlang.org/polymer-dart/"> |
25 The Polymer.dart Authors</a></p> | 24 The Polymer.dart Authors</a></p> |
26 <p>This example was built using a pre-alpha version of Polymer.dart.</p> | 25 <p>This example was built using a pre-alpha version of Polymer.dart.</p> |
27 <p>Part of <a href="http://todomvc.com">TodoMVC</a></p> | 26 <p>Part of <a href="http://todomvc.com">TodoMVC</a></p> |
28 </footer> | 27 </footer> |
29 </body> | 28 </body> |
30 </html> | 29 </html> |
OLD | NEW |