PageRenderTime 15ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/scalate-core/src/test/resources/moustache/js/complex.html

http://github.com/scalate/scalate
HTML | 16 lines | 16 code | 0 blank | 0 comment | 0 complexity | a595bd96952c4a1ae0cb65a124ea2b03 MD5 | raw file
  1. <h1>{{header}}</h1>
  2. {{#list}}
  3. <ul>
  4. {{#item}}
  5. {{#current}}
  6. <li><strong>{{name}}</strong></li>
  7. {{/current}}
  8. {{#link}}
  9. <li><a href="{{url}}">{{name}}</a></li>
  10. {{/link}}
  11. {{/item}}
  12. </ul>
  13. {{/list}}
  14. {{#empty}}
  15. <p>The list is empty.</p>
  16. {{/empty}}