Advertisement
Guest User

Polymer Help

a guest
Sep 20th, 2015
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>{% block title %}Untitled{% endblock %}</title>
  5.  
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.  
  8.     <!-- Chrome for Android theme color -->
  9.     <meta name="theme-color" content="#2E3AA1">
  10.     <script src="/components/webcomponentsjs/webcomponents.min.js"></script>
  11.  
  12.     <!-- Iron Elements -->
  13.     <link rel="import" href="/components/iron-icons/iron-icons.html">
  14.  
  15.     <!-- Paper Elements -->
  16.     <link rel="import" src="/components/paper-toolbar/paper-toolbar.html">
  17.     <link rel="import" href="/components/paper-icon-button/paper-icon-button.html">
  18.  
  19. </head>
  20. <body unresolved>
  21.     <paper-toolbar>
  22.         <paper-icon-button icon="menu"></paper-icon-button>
  23.         <span class="title">Toolbar</span>
  24.         <paper-icon-button icon="refresh"></paper-icon-button>
  25.         <paper-icon-button icon="add">+</paper-icon-button>
  26.     </paper-toolbar>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement