comment_item.html 193 B

123456789
  1. <template name="commentItem">
  2. <li>
  3. <h4>
  4. <span class="author">{{author}}</span>
  5. <span class="date">on {{submittedText}}</span>
  6. </h4>
  7. <p>{{body}}</p>
  8. </li>
  9. </template>