mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
21 lines
772 B
Handlebars
21 lines
772 B
Handlebars
|
|
||
|
<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>
|
||
|
Your current plan only supports official themes. You can install them from the <a href="https://ghost.org/marketplace/">Ghost theme marketplace</a>.
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
<div class="modal-footer">
|
||
|
<button {{on "click" this.closeModal}} class="gh-btn" data-test-button="cancel-upgrade">
|
||
|
<span>Cancel</span>
|
||
|
</button>
|
||
|
|
||
|
<button {{on "click" (action "upgrade")}} class="gh-btn gh-btn-black" data-test-button="upgrade-plan">
|
||
|
<span>Upgrade</span>
|
||
|
</button>
|
||
|
</div>
|