/scalate-core/src/test/resources/org/fusesource/scalate/mustache/mylayout.mustache

http://github.com/scalate/scalate · Mustache · 19 lines · 19 code · 0 blank · 0 comment · 0 complexity · 3934bda0c359be30e690de62fcfe5716 MD5 · raw file

  1. <html>
  2. {{#html}}
  3. <head>
  4. <!-- mylayout -->
  5. {{#head}}
  6. {{title}}
  7. {{/head}}
  8. </head>
  9. <body>
  10. <div id="header"></div>
  11. <div id="content">
  12. {{#body}}
  13. {{_}}
  14. {{/body}}
  15. </div>
  16. <div id="footer"></div>
  17. </body>
  18. {{/html}}
  19. </html>