atom-beautify/examples/nested-jsbeautifyrc/mustache/original/test.mustache

17 lines
227 B
Plaintext
Raw Normal View History

2014-10-26 13:11:44 -06:00
<h1>{{header}}</h1>
{{#bug}}
{{/bug}}
{{#items}}
{{#first}}
<li><strong>{{name}}</strong></li>
{{/first}}
{{#link}}
<li><a href="{{url}}">{{name}}</a></li>
{{/link}}
{{/items}}
{{#empty}}
<p>The list is empty.</p>
{{/empty}}