Steps.html 658 Bytes
<div id="NMEC_${id}" class="wev-comp-${compType}" >
    <div class="wev-steps wev-steps-{@if direction}${direction}{@else}horizontal{@/if}">
        {@each steps as step, index}
        <div class="wev-steps-item wev-steps-{@if step.status}${step.status}{@else}wait{@/if}">
            <div class="wev-steps-item-tail"></div>
            <div class="wev-steps-item-icon"><span>${++index}</span></div>
            <div class="wev-steps-item-content">
                <div class="wev-steps-item-title">$${step.title}</div>
                <div class="wev-steps-item-desc">$${step.desc}</div>
            </div>
        </div>
        {@/each}
    </div>
</div>