project.template 992 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. <div>
  43. <section data-type="list">
  44. <header>
  45. Scrums
  46. </header>
  47. <ul>
  48. {{#each scrums}}
  49. <li>
  50. <aside class="pack-end">
  51. {{user.name}}
  52. </aside>
  53. <a href="#scrum-{{id}}">
  54. <p>
  55. {{title}}
  56. </p>
  57. <p>
  58. {{description}}
  59. </p>
  60. </a>
  61. </li>
  62. {{/each}}
  63. </ul>
  64. </section>
  65. </div>