mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 02:41:50 +03:00
21 lines
464 B
Handlebars
21 lines
464 B
Handlebars
|
{{#if selected}}
|
||
|
<button {{action "select"}} class="selected">
|
||
|
{{#if tool.icon}}
|
||
|
<img src="{{iconURL}}{{tool.icon}}" />
|
||
|
{{else}}
|
||
|
{{tool.name}}
|
||
|
{{/if}}
|
||
|
{{tool.label}}
|
||
|
</button>
|
||
|
{{else}}
|
||
|
<button {{action "select"}}>
|
||
|
{{#if tool.icon}}
|
||
|
<img src="{{iconURL}}{{tool.icon}}" />
|
||
|
{{else}}
|
||
|
{{tool.name}}
|
||
|
{{/if}}
|
||
|
{{tool.label}}
|
||
|
</button>
|
||
|
{{/if}}
|
||
|
|