mirror of
https://github.com/donl/meteor-ionic.git
synced 2026-05-29 06:12:31 -06:00
10 lines
271 B
HTML
10 lines
271 B
HTML
<template name="ionTab">
|
|
<a class="tab-item tab-item-positive {{isActiveRoute regex=path}}" href="{{url}}">
|
|
{{#if isActiveRoute regex=path }}
|
|
{{> ionIcon icon=iconOn}}
|
|
{{else}}
|
|
{{> ionIcon icon=iconOff}}
|
|
{{/if}}
|
|
{{title}}
|
|
</a>
|
|
</template>
|