<!-- 상품목록 탬플릿 -->
<script id="temp_goods" type="x-handlebars/template">
<table class= "table">
{{#each .}}
<tr>
<td>{{gid}}</td>
<td><img src = "{{image}}" width="50px"></td>
<td><div class="ellipsis">{{title}}</td>
<td>{{fmtPrice price}}</td>
<td>{{maker}}</td>
<td><button class="btn btn-danger">삭제</button><td>
</tr>
{{/each}}
</script>
안의 내용은 바뀔 수 있다.
<!-- 검색목록 템플릿 -->
<script id="temp_search">
<table class="table">
{{#each items}}
<tr goods="{{toString @this}}">
<td><img src="{{image}}" width="50px"></td>
<td class="title">{{{title}}}</td>
<td>{{lprice}}</td>
<td>{{maker}}</td>
<td><button class="btn btn-primary btn-sm btn-save">저장</button></td>
</tr>
{{/each}}
</table>
</script>