project.template 614 B

1234567891011121314151617181920212223242526272829303132
  1. <h2>
  2. {{title}} <a style="font-size:small;color:gray;text-decoration:none;" href="#~{{user.name}}">{{user.name}}</a>
  3. </h2>
  4. <div style="font-size:large;">
  5. {{description}}
  6. </div>
  7. <span style="font-size:small;">
  8. Comments
  9. </span>
  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 style="font-size:smaller;" class="timeago">
  17. {{timestamp}}
  18. </time>
  19. <div>
  20. {{message}}
  21. </div>
  22. </li>
  23. {{/each}}
  24. </ul>
  25. <a class="comment">
  26. {
  27. "text": "comment",
  28. "id": {{id}},
  29. "type": "project",
  30. "title": "Comment"
  31. }
  32. </a>