Skip to content

Instantly share code, notes, and snippets.

@robdodson
Created March 19, 2014 00:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robdodson/9632724 to your computer and use it in GitHub Desktop.
Save robdodson/9632724 to your computer and use it in GitHub Desktop.
foo
<!doctype html>
<html>
<head>
<title>Paper Element Boilerplate</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="bower_components/platform/platform.js"></script>
<link rel="import" href="my-paper-element.html">
<style>
body {
font-family: Roboto2, 'Helvetica Neue', Helvetica, Arial;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout: none;
}
</style>
</head>
<body unresolved>
<my-paper-element></my-paper-element>
<my-paper-element person="Eric"></my-paper-element>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment