Button.html
633 Bytes
<div id="NMEC_${id}" class="wev-comp-${compType}">
<div class=" wev-btn-wrapper {@if layout=='relative'}wev-btn-block{@/if}">
{@each items as item,index}
<a id="${item.id}" class="wev-btn ${item.btn_style}" {@if item.btn_width}style="width:${item.btn_width}%"{@/if}>
{@if item.icon && item.icon.position == 'left' && item.icon.path}<img src="${item.icon.path}">{@/if}
<span>${item.text}</span>
{@if item.icon && item.icon.position == 'right' && item.icon.path}<img src="${item.icon.path}">{@/if}
{@if item.remind}
<span class="wev-badge" data-index="${index}"></span>
{@/if}
</a>
{@/each}
</div>
</div>