mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
ff69766442
closes TryGhost/Ghost#9506
24 lines
718 B
Handlebars
24 lines
718 B
Handlebars
{{#if icon}}{{svg-jar icon class=iconClass}}{{/if}}
|
|
|
|
{{yield}}
|
|
|
|
{{#if toolbar}}
|
|
<div class="koenig-card-toolbar koenig-toolbar {{if showToolbar "koenig-toolbar--visible"}}" style={{toolbarStyle}}>
|
|
{{#each toolbar.items as |item|}}
|
|
<button
|
|
type="button"
|
|
title={{item.title}}
|
|
class="koenig-toolbar-btn sans-serif f7"
|
|
style="width: auto !important"
|
|
onmousedown={{action item.action}}
|
|
>
|
|
{{#if item.icon}}
|
|
{{svg-jar item.icon}}
|
|
{{else}}
|
|
{{item.title}}
|
|
{{/if}}
|
|
</button>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|