Ghost/ghost/admin/lib/koenig-editor/addon/templates/components/koenig-card-html.hbs

22 lines
599 B
Handlebars

{{#koenig-card
class=(concat (kg-style "media-card") " mih10 miw-100 relative")
toolbar=toolbar
isSelected=isSelected
isEditing=isEditing
selectCard=(action selectCard)
editCard=(action editCard)
onLeaveEdit=(action "leaveEditMode")
}}
{{#if isEditing}}
{{gh-cm-editor payload.html
class="koenig-card-html--editor"
autofocus=true
lineWrapping=true
update=(action "updateHtml")
}}
{{else}}
{{{payload.html}}}
<div class="koenig-card-click-overlay"></div>
{{/if}}
{{/koenig-card}}