| 123456789101112131415161718192021222324252627 |
- {{> 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}}
- <section>
- {{#each meta.entries}}
- <article>
- <h2>
- <a href="{{outputPath}}">{{{ niceName }}}</a>
- </h2>
- <p>{{{ blurb }}}</p>
- </article>
- {{/each}}
- </section>
- {{> footer }}
|