A presentation by Ryan Kool
HTML Templates
<template repeat="{{ user in users }}">
{{user.name}}
</template>

<element name="a-bar" constructor="ABar">
<section>Hello World</section>
<script>
var section = this.querySelector('section');
this.register({
prototype: {
readyCallback: function() {
this.textContent = section.textContent;
},
bar: function() { alert('bar() is called'); }
}
});
</script>
</element>
Polymer is a Library utilizing web components for building elements and applications

