embed.html 656 B

123456789101112131415161718192021222324252627282930313233
  1. {{#extend "layout"}}
  2. {{#content "subtitle"}}
  3. <h2>Goodnight Moon</h2>
  4. {{/content}}
  5. {{#content "body"}}
  6. {{#embed "media"}}
  7. {{#content "image"}}
  8. <img src="//placehold.it/50" alt="" />
  9. {{/content}}
  10. {{#content "body"}}
  11. <p>A cat running away with a spoon.</p>
  12. {{/content}}
  13. {{/embed}}
  14. {{#each users}}
  15. {{#embed "media"}}
  16. {{#content "image"}}
  17. <img src="{{../../picture}}" alt="" />
  18. {{/content}}
  19. {{#content "body"}}
  20. <p>{{../../name.first}} {{../../name.last}}</p>
  21. {{/content}}
  22. {{/embed}}
  23. {{/each}}
  24. {{/content}}
  25. {{#content "footer" mode="append"}}
  26. <p>MIT License</p>
  27. {{/content}}
  28. {{/extend}}