Files
handlebars.js/bench/templates/complex.mustache
T
2013-08-25 15:38:17 -05:00

14 lines
260 B
Plaintext

<h1>{{header}}</h1>
{{#hasItems}}
<ul>
{{#items}}
{{#current}}
<li><strong>{{name}}</strong></li>
{{/current}}
{{^current}}
<li><a href="{{url}}">{{name}}</a></li>
{{/current}}
{{/items}}
</ul>
{{/hasItems}}