handlebar templates are now .hbs instead of .html

This commit is contained in:
kayone
2014-08-26 13:17:00 -07:00
parent 322ff2af8c
commit 5cfe2c0186
156 changed files with 3 additions and 3 deletions
@@ -0,0 +1,34 @@
<div class="update">
<fieldset>
<legend>{{version}}
<span class="date">
- {{ShortDate releaseDate}}
</span>
{{#if installed}}
<span class="update-installed"><i class="icon-ok" title="Installed"></i></span>
{{/if}}
{{#if isUpgrade}}
<span class="label label-default install-update x-install-update">Install</span>
{{/if}}
</legend>
{{#with changes}}
{{#each new}}
<div class="change">
<span class="label label-success">New</span> {{this}}
</div>
{{/each}}
{{#each fixed}}
<div class="change">
<span class="label label-info">Fixed</span> {{this}}
</div>
{{/each}}
{{/with}}
{{#unless changes}}
Maintenance release
{{/unless}}
</fieldset>
</div>