mirror of
https://github.com/donl/meteor-ionic.git
synced 2026-06-30 06:12:08 -06:00
11 lines
255 B
HTML
11 lines
255 B
HTML
<template name="ionItem">
|
|
{{#if isAnchor}}
|
|
<a class="{{itemClasses}}" href="{{url}}" target="{{target}}">
|
|
{{> UI.contentBlock}}
|
|
</a>
|
|
{{else}}
|
|
<div class="{{itemClasses}}">
|
|
{{> UI.contentBlock}}
|
|
</div>
|
|
{{/if}}
|
|
</template>
|