2021-04-07 16:51:22 +03:00
|
|
|
|
|
|
|
<header class="modal-header" data-test-modal="delete-user">
|
|
|
|
<h1>Upgrade to enable custom themes</h1>
|
|
|
|
</header>
|
|
|
|
<button class="close" title="Close" {{on "click" this.closeModal}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
|
|
|
|
|
|
|
<div class="modal-body">
|
|
|
|
<p>
|
2021-04-30 23:26:36 +03:00
|
|
|
{{#if this.model.limitErrorMessage}}
|
|
|
|
{{html-safe this.model.limitErrorMessage}}
|
|
|
|
{{else}}
|
|
|
|
Your current plan only supports official themes. You can install them from the <a href="https://ghost.org/marketplace/">Ghost theme marketplace</a>.
|
|
|
|
{{/if}}
|
2021-04-07 16:51:22 +03:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button {{on "click" this.closeModal}} class="gh-btn" data-test-button="cancel-upgrade">
|
|
|
|
<span>Cancel</span>
|
|
|
|
</button>
|
|
|
|
|
2021-04-20 20:15:33 +03:00
|
|
|
<button {{on "click" (action "upgrade")}} class="gh-btn gh-btn-green" data-test-button="upgrade-plan">
|
2021-04-07 16:51:22 +03:00
|
|
|
<span>Upgrade</span>
|
|
|
|
</button>
|
|
|
|
</div>
|