Skip to content

Instantly share code, notes, and snippets.

@jstrimpel
Last active August 29, 2015 14:09
Show Gist options
  • Save jstrimpel/7f6f308a5431dbf576fc to your computer and use it in GitHub Desktop.
Save jstrimpel/7f6f308a5431dbf576fc to your computer and use it in GitHub Desktop.
web components
|- application
|- imports
hp.html (base element; includes polymer)
avatar.html
share.html
|- components
|- profile
|- imports
index.html
<hp-profile>
<hp-avatar img="{{avatar}}">
{{#each social}}
<hp-share type="{{service}}" />
{{/each}}
</hp-avatar>
</hp-profile>
<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