user-profile.html 705B

1234567891011121314151617181920212223242526272829303132
  1. <dom-module id="user-profile">
  2. <style>
  3. paper-card {
  4. }
  5. </style>
  6. <template>
  7. <paper-card heading="{{name}}" image="{{image}}">
  8. <div class="card-content">{{description}}</div>
  9. </paper-card>
  10. </template>
  11. <script>
  12. Polymer({
  13. is: 'user-profile',
  14. properties: {
  15. description: {
  16. type: String,
  17. },
  18. name: {
  19. type: String,
  20. },
  21. image: {
  22. type: String,
  23. value: "../images/avatars/placeholder.png"
  24. }
  25. }
  26. });
  27. </script>
  28. </dom-module>