260edd95ea
R=jmesserly@google.com Review URL: https://codereview.chromium.org//57423005 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29870 260f80e4-7a28-3924-810f-c04153c831b5
25 lines
882 B
HTML
25 lines
882 B
HTML
<!DOCTYPE html>
|
|
<!--
|
|
This example is from
|
|
https://github.com/dglazkov/Web-Components-Polyfill/blob/master/samples/news
|
|
-->
|
|
<html>
|
|
<head>
|
|
<title>Simple Web Components Example</title>
|
|
<link rel="import" href="news-component.html">
|
|
</head>
|
|
<body>
|
|
<h1>Simple Web Components Example</h1>
|
|
<ul is="x-news">
|
|
<li><a href="//example.com/stories/1">A story</a></li>
|
|
<li><a href="//example.com/stories/2">Another story</a></li>
|
|
<li class="breaking"><a href="//example.com/stories/3">Also a story</a></li>
|
|
<li><a href="//example.com/stories/4">Yet another story</a></li>
|
|
<li><a href="//example.com/stories/4">Awesome story</a></li>
|
|
<li class="breaking"><a href="//example.com/stories/5">Horrible story</a></li>
|
|
</ul>
|
|
<script type="application/dart">export 'package:polymer/init.dart';</script>
|
|
<script src='packages/browser/dart.js'></script>
|
|
</body>
|
|
</html>
|