Last active
August 29, 2015 14:09
-
-
Save jstrimpel/7f6f308a5431dbf576fc to your computer and use it in GitHub Desktop.
web components
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|- application | |
|- imports | |
hp.html (base element; includes polymer) | |
avatar.html | |
share.html | |
|- components | |
|- profile | |
|- imports | |
index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<hp-profile> | |
<hp-avatar img="{{avatar}}"> | |
{{#each social}} | |
<hp-share type="{{service}}" /> | |
{{/each}} | |
</hp-avatar> | |
</hp-profile> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="/app/imports/avatar.html"> | |
<link rel="import" href="/app/imports/share.html"> | |
<polymer-element name="hp-profile" noscript> | |
<template> | |
<p>I am the Happy Pancake profile element!</p> | |
</template> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment