Ghost/ghost/admin/app/components/modal-post-email-preview.hbs

28 lines
1.5 KiB
Handlebars
Raw Normal View History

<header class="modal-header gh-pe-header {{if (eq this.type "desktop") "gh-pe-header-border"}}" data-test-modal="preview-email" style="display:flex">
<h2 class="f6 fw6">{{this.subject}}</h2>
2019-11-06 08:07:43 +03:00
<div class="gh-contentfilter gh-btn-group gh-pe-btn-group" style="display:flex;flex-grow:1;justify-content:center">
<button class="gh-btn {{if (eq this.type "desktop") "gh-btn-group-selected"}}" {{action "changeType" "desktop"}}><span>Desktop</span></button>
<button class="gh-btn {{if (eq this.type "mobile") "gh-btn-group-selected"}}" {{action "changeType" "mobile"}}><span>Mobile</span></button>
2019-11-06 08:07:43 +03:00
</div>
2019-11-07 07:09:47 +03:00
<div class="gh-pe-close">
<button class="close" href title="Close" {{on "click" this.closeModal}}>
2019-11-07 07:09:47 +03:00
{{svg-jar "close"}}
</button>
</div>
2019-11-05 08:21:29 +03:00
</header>
{{#if (eq this.type "mobile")}}
<div class="modal-body modal-preview-email-content gh-pe-mobile-container" style="display: flex;justify-content: center;">
<div class="gh-pe-mobile-bezel">
<div class="gh-pe-mobile-screen">
<iframe class="bn gh-pe-iframe" {{did-insert this.renderEmailPreview}} sandbox="allow-same-origin"></iframe>
2019-11-05 08:21:29 +03:00
</div>
</div>
</div>
{{/if}}
{{#if (eq this.type "desktop")}}
2019-11-06 11:58:01 +03:00
<div class="modal-body modal-preview-email-content gh-pe-desktop-container">
<iframe class="bn miw-100 gh-pe-iframe" style="height:100%;" {{did-insert this.renderEmailPreview}} sandbox="allow-same-origin"></iframe>
2019-11-05 08:21:29 +03:00
</div>
{{/if}}