Files
handlebars.js/bench/templates/complex.handlebars
T
2013-08-25 14:59:11 -05:00

15 lines
264 B
Handlebars

<h1>{{header}}</h1>
{{#if items}}
<ul>
{{#each items}}
{{#if current}}
<li><strong>{{name}}</strong></li>
{{^}}
<li><a href="{{url}}">{{name}}</a></li>
{{/if}}
{{/each}}
</ul>
{{^}}
<p>The list is empty.</p>
{{/if}}