mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 11:54:33 +03:00
beb5ae1737
no issue
- This will help with the octane migration and you can still run the lint rules even when they are todos. (Checkout the docs at 158b119667/docs/todos.md
) The good news is any new code will be checked against the recommended config.
- I fixed all the auto fixable things we could get in this PR as well
46 lines
2.4 KiB
Handlebars
46 lines
2.4 KiB
Handlebars
<div class="modal-content">
|
|
<header class="modal-header gh-pe-header gh-pe-header-border" data-test-modal="preview-email" style="display:flex">
|
|
<h2 class="f6 fw6">{{this.subject}}</h2>
|
|
<div>
|
|
<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.tab "desktop") "gh-btn-group-selected"}}" type="button" {{on "click" (fn this.changeTab "desktop")}}><span>Desktop</span></button>
|
|
<button class="gh-btn {{if (eq this.tab "mobile") "gh-btn-group-selected"}}" type="button" {{on "click" (fn this.changeTab "mobile")}}><span>Mobile</span></button>
|
|
</div>
|
|
</div>
|
|
<div class="gh-pe-close">
|
|
<button class="close" href title="Close" type="button" {{on "click" @close}}>
|
|
{{svg-jar "close"}}
|
|
</button>
|
|
</div>
|
|
</header>
|
|
|
|
{{#if (eq this.tab "mobile")}}
|
|
<div class="modal-body modal-preview-email-content gh-pe-mobile-container">
|
|
<div class="gh-pe-mobile-bezel">
|
|
<div class="gh-pe-mobile-screen">
|
|
<div class="gh-pe-emailclient-sender">
|
|
<p>
|
|
<span class="strong">{{this.config.blogTitle}}</span> <{{this.settings.membersFromAddress}}>
|
|
</p>
|
|
<p><span class="dark">To:</span> Jamie Larson <jamie@example.com></p>
|
|
</div>
|
|
<iframe class="bn gh-pe-iframe" {{did-insert this.renderEmailPreview}} sandbox="allow-same-origin"></iframe>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
|
|
{{#if (eq this.tab "desktop")}}
|
|
<div class="modal-body modal-preview-email-content gh-pe-desktop-container">
|
|
<div class="gh-pe-emailclient-mockup">
|
|
<div class="gh-pe-emailclient-sender">
|
|
<p>
|
|
<span class="strong">{{this.config.blogTitle}}</span> <{{this.settings.membersFromAddress}}>
|
|
</p>
|
|
<p><span class="dark">To:</span> Jamie Larson <jamie@example.com></p>
|
|
</div>
|
|
<iframe class="gh-pe-iframe" {{did-insert this.renderEmailPreview}} sandbox="allow-same-origin"></iframe>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
</div> |