OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 This example is from | 3 This example is from |
4 https://github.com/dglazkov/Web-Components-Polyfill/blob/master/samples/news | 4 https://github.com/dglazkov/Web-Components-Polyfill/blob/master/samples/news |
5 --> | 5 --> |
6 <html> | 6 <html> |
7 <head> | 7 <head> |
8 <title>Simple Web Components Example</title> | 8 <title>Simple Web Components Example</title> |
| 9 <link rel="import" href="packages/polymer/polymer.html"> |
9 <link rel="import" href="news-component.html"> | 10 <link rel="import" href="news-component.html"> |
10 </head> | 11 </head> |
11 <body> | 12 <body> |
12 <h1>Simple Web Components Example</h1> | 13 <h1>Simple Web Components Example</h1> |
13 <ul is="x-news"> | 14 <ul is="x-news"> |
14 <li><a href="//example.com/stories/1">A story</a></li> | 15 <li><a href="//example.com/stories/1">A story</a></li> |
15 <li><a href="//example.com/stories/2">Another story</a></li> | 16 <li><a href="//example.com/stories/2">Another story</a></li> |
16 <li class="breaking"><a href="//example.com/stories/3">Also a story</a></li> | 17 <li class="breaking"><a href="//example.com/stories/3">Also a story</a></li> |
17 <li><a href="//example.com/stories/4">Yet another story</a></li> | 18 <li><a href="//example.com/stories/4">Yet another story</a></li> |
18 <li><a href="//example.com/stories/4">Awesome story</a></li> | 19 <li><a href="//example.com/stories/4">Awesome story</a></li> |
19 <li class="breaking"><a href="//example.com/stories/5">Horrible story</a></l
i> | 20 <li class="breaking"><a href="//example.com/stories/5">Horrible story</a></l
i> |
20 </ul> | 21 </ul> |
21 <script type="application/dart">export 'package:polymer/init.dart';</script> | |
22 <script src='packages/browser/dart.js'></script> | |
23 </body> | 22 </body> |
24 </html> | 23 </html> |
OLD | NEW |