projects.template 259 B

123456789101112131415161718
  1. {{#if key}}
  2. <a class="button" href="#page-newproject">
  3. New
  4. </a>
  5. {{/if}}
  6. <div id="accordion">
  7. {{#each projects}}
  8. <h3>
  9. {{name}}
  10. </h3>
  11. <div>
  12. <a href="#project-{{id}}" class="button">
  13. Open
  14. </a>
  15. {{description}}
  16. </div>
  17. {{/each}}
  18. </div>