index.handlebars 654 B

12345678910111213141516171819202122232425262728293031323334
  1. {{> header }}
  2. <main>
  3. <section>
  4. {{#if item.content}}
  5. {{{ item.content }}}
  6. {{else}}
  7. <h1><a title="{{meta.name}}" href="{{meta.outputPath}}">{{meta.title}}</a></h1>
  8. {{/if}}
  9. </section>
  10. {{#if meta.sections}}
  11. <section class="filetree">
  12. <ul>
  13. {{#each meta.sections}}
  14. <li>
  15. <a title="{{name}}" href="{{outputPath}}">{{{ niceName }}} </a>
  16. </li>
  17. {{/each}}
  18. </ul>
  19. </section>
  20. {{/if}}
  21. {{#if meta.entries}}
  22. <section class="no-margin">
  23. {{#each meta.entries}}
  24. <article>
  25. <h2>
  26. <a title="{{name}}" href="{{outputPath}}">{{{ niceName }}}</a>
  27. </h2>
  28. <p>{{{ blurb }}}</p>
  29. </article>
  30. {{/each}}
  31. </section>
  32. {{/if}}
  33. </main>
  34. {{> footer }}