index.handlebars 461 B

123456789101112131415161718192021222324252627
  1. {{> header }}
  2. <section>
  3. <h1>{{meta.title}}</h1>
  4. </section>
  5. {{#if meta.sections}}
  6. <section>
  7. {{#each meta.sections}}
  8. <article>
  9. <h2>
  10. <a href="{{outputPath}}">{{{ niceName }}} </a>
  11. </h2>
  12. <p>{{{ blurb }}}</p>
  13. </article>
  14. {{/each}}
  15. </section>
  16. {{/if}}
  17. <section>
  18. {{#each meta.entries}}
  19. <article>
  20. <h2>
  21. <a href="{{outputPath}}">{{{ niceName }}}</a>
  22. </h2>
  23. <p>{{{ blurb }}}</p>
  24. </article>
  25. {{/each}}
  26. </section>
  27. {{> footer }}