Skip to content

Commit

Permalink
Adding post-card.html to avoid 404s in first step solution.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Evans committed Jun 24, 2014
1 parent cdf3af1 commit 572d332
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions samples/tutorial/step-1/post-card.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<link rel="import" href="../components/polymer/polymer.html">
<link rel="import" href="../components/core-icon-button/core-icon-button.html">

<polymer-element name="post-card">
<template>
<style>
:host {
display: block;
position: relative;
background-color: white;
padding: 20px;
width: 100%;
font-size: 1.2rem;
font-weight: 300;
}
.card-header {
margin-bottom: 10px;
}

</style>

<!-- CARD CONTENTS GO HERE -->

</template>
<script>
Polymer({});
</script>
</polymer-element>

0 comments on commit 572d332

Please sign in to comment.