complex.mustache 262 B

12345678910111213141516
  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}}