| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <meta charset="utf-8"> | 5 <meta charset="utf-8"> |
| 6 <title>Sample app</title> | 6 <title>Sample app</title> |
| 7 <style> | 7 <style> |
| 8 body { | 8 body { |
| 9 padding-top: 60px; /* 60px to make the container go all the way to the b
ottom of the topbar */ | 9 padding-top: 60px; /* 60px to make the container go all the way to the b
ottom of the topbar */ |
| 10 } | 10 } |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 </div> | 31 </div> |
| 32 | 32 |
| 33 <div class="container"> | 33 <div class="container"> |
| 34 <x-root-view route="{{router.root.newHandle()}}"></x-root-view> | 34 <x-root-view route="{{router.root.newHandle()}}"></x-root-view> |
| 35 </div> | 35 </div> |
| 36 | 36 |
| 37 <script type="application/dart" src="index.dart"></script> | 37 <script type="application/dart" src="index.dart"></script> |
| 38 <script src="packages/browser/dart.js"></script> | 38 <script src="packages/browser/dart.js"></script> |
| 39 </body> | 39 </body> |
| 40 </html> | 40 </html> |
| OLD | NEW |