size-table.hbs
829 Bytes
<table>
<thead>
<tr>
{{# thead}}
<th width="{{width}}">
{{name}}
{{#if doubt}}
<span class="iconfont show-img"></span>
{{/if}}
</th>
{{/ thead}}
</tr>
</thead>
<tbody>
{{# tbody}}
<tr>
{{#each .}}
{{#if this.img}}
<td>
<img src="{{image img 26 26}}" title="{{name}}">
<span class="model-name">{{name}}</span>
</td>
{{^}}
<td>{{.}}</td>
{{/if}}
{{/each}}
</tr>
{{/ tbody}}
</tbody>
</table>