| 123456789101112131415161718192021222324252627282930 |
- {{> header }}
- <main>
- <section>
- <h1>{{meta.title}}</h1>
- </section>
- {{#if meta.sections}}
- <section class="filetree">
- <ul>
- {{#each meta.sections}}
- <li>
- <a title="{{name}}" href="{{outputPath}}">{{{ niceName }}} </a>
- </li>
- {{/each}}
- </ul>
- </section>
- {{/if}}
- {{#if meta.entries}}
- <section class="no-margin">
- {{#each meta.entries}}
- <article>
- <h2>
- <a title="{{name}}" href="{{outputPath}}">{{{ niceName }}}</a>
- </h2>
- <p>{{{ blurb }}}</p>
- </article>
- {{/each}}
- </section>
- {{/if}}
- </main>
- {{> footer }}
|