123456789101112131415161718192021222324252627282930313233 |
- {{#extend "layout"}}
- {{#content "subtitle"}}
- <h2>Goodnight Moon</h2>
- {{/content}}
- {{#content "body"}}
- {{#embed "media"}}
- {{#content "image"}}
- <img src="//placehold.it/50" alt="" />
- {{/content}}
- {{#content "body"}}
- <p>A cat running away with a spoon.</p>
- {{/content}}
- {{/embed}}
- {{#each users}}
- {{#embed "media"}}
- {{#content "image"}}
- <img src="{{../../picture}}" alt="" />
- {{/content}}
- {{#content "body"}}
- <p>{{../../name.first}} {{../../name.last}}</p>
- {{/content}}
- {{/embed}}
- {{/each}}
- {{/content}}
- {{#content "footer" mode="append"}}
- <p>MIT License</p>
- {{/content}}
- {{/extend}}
|