| 1234567891011121314151617 |
- {{> header }}
- <section>
- <h1>{{meta.title}}</h1>
- </section>
- {{#if meta.sections}}
- <section>
- {{#each meta.sections}}
- <article>
- <h2>
- <a href="{{outputPath}}">{{{ niceName }}}</a>
- </h2>
- <p>{{{ blurb }}}</p>
- </article>
- {{/each}}
- </section>
- {{/if}}
- {{> footer }}
|