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
+16
View File
@@ -0,0 +1,16 @@
<ul>
{{#each handles}}
<li {{#if className}}class="{{className}}"{{/if}} >
{{#if pageNumber}}
<span class="x-page-number">{{pageNumber}} / {{lastPage}}</span>
{{else}}
<i class="pager-btn clickable {{label}}" data-action="{{action}}"/>
{{/if}}
</li>
{{/each}}
</ul>
<span class="total-records">
<span class="hidden-xs">Total records: {{Number state.totalRecords}}</span>
<span class="visible-xs label label-info" title="Total records">{{Number state.totalRecords}}</span>
</span>