project.template 734 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. <br/>
  8. <h3>
  9. Comments
  10. </h3>
  11. <ul>
  12. {{#each comments}}
  13. <li>
  14. <a style="font-size:small;color:gray;text-decoration:none;" href="#~{{name}}">
  15. {{name}}
  16. </a>
  17. <time style="font-size:smaller;" class="timeago">
  18. {{timestamp}}
  19. </time>
  20. <div>
  21. {{message}}
  22. </div>
  23. </li>
  24. {{/each}}
  25. </ul>
  26. <a class="more">
  27. project
  28. </a>
  29. <a class="comment">
  30. {
  31. "text": "comment",
  32. "id": {{id}},
  33. "type": "project",
  34. "title": "Comment"
  35. }
  36. </a>
  37. <br/>
  38. <br/>
  39. <h3>
  40. Scrums
  41. </h3>
  42. {{#each scrums}}
  43. <a class="button" href="#scrum-{{id}}">{{title}}</a>
  44. {{/each}}