15 lines
264 B
Handlebars
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}}
|