index.handlebars 285 B

1234567891011121314151617
  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. {{> footer }}