index.handlebars 535 B

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