projects.template 369 B

123456789101112131415161718192021222324
  1. {{#if key}}
  2. <a class="button" href="#page-newproject">
  3. New
  4. </a>
  5. {{/if}}
  6. <div class="accordion">
  7. <span class="icons">
  8. {
  9. "header": "ui-icon-wrench",
  10. "activeHeader": "ui-icon-wrench"
  11. }
  12. </span>
  13. {{#each projects}}
  14. <h3>
  15. {{title}}
  16. <a href="#project-{{id}}" class="button">
  17. Open
  18. </a>
  19. </h3>
  20. <div>
  21. {{description}}
  22. </div>
  23. {{/each}}
  24. </div>