project.template 425 B

123456789101112131415161718192021222324
  1. <h3>
  2. {{title}} - <a style="font-size:small;color:gray;text-decoration:none;" href="#~{{user.name}}">{{user.name}}</a>
  3. </h3>
  4. <div>
  5. {{description}}
  6. </div>
  7. <h4>
  8. Comments
  9. </h4>
  10. <ul>
  11. {{#each comments}}
  12. <li>
  13. <a style="font-size:small;color:gray;text-decoration:none;" href="#~{{name}}">
  14. {{name}}
  15. </a>
  16. <time class="timeago">
  17. {{timestamp}}
  18. </time>
  19. <div>
  20. {{message}}
  21. </div>
  22. </li>
  23. {{/each}}
  24. </ul>