1<!doctype html> 2<!-- 3@license 4Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 5This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt 6The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 7The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt 8Code distributed by Google as part of the polymer project is also 9subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt 10--> 11<html lang="en"> 12<head> 13 <title>neon-animated pages demo</title> 14 <meta charset="utf-8"> 15 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 16 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes"> 17 18 <script src="../../webcomponentsjs/webcomponents-lite.js"></script> 19 20 <link rel="import" href="../../paper-styles/demo-pages.html"> 21</head> 22<style> 23 a { 24 display: block; 25 margin-bottom: 10px; 26 } 27</style> 28<body unresolved> 29 <div class="horizontal-section-container"> 30 <div> 31 <h4>Sample demos</h4> 32 <div class="horizontal-section"> 33 <a href="doc/index.html">basic</a> 34 <a href="declarative/index.html">declarative</a> 35 <a href="dropdown/index.html">dropdown</a> 36 <a href="grid/index.html">grid</a> 37 <a href="list/index.html">list</a> 38 <a href="load/index.html">load</a> 39 <a href="tiles/index.html">tiles</a> 40 <a href="card/index.html">card</a> 41 </div> 42 </div> 43 </div> 44</body> 45</html> 46