Ghost/ghost/admin/app/templates/components/modals/delete-theme.hbs

20 lines
760 B
Handlebars

<header class="modal-header">
<h1>Are you sure you want to delete this theme?</h1>
</header>
<a class="close icon-x" href="" title="Close" {{action "closeModal"}}><span class="hidden">Close</span></a>
<div class="modal-body">
<strong>WARNING:</strong>
You're about to delete "<strong>{{theme.label}}</strong>".
This is permanent!
No backups, no restores, no magic undo button. We warned you, ok?
<br>
<br>
<strong>RECOMMENDED:</strong>
<a href="#" {{action download}}>Download your theme before continuing</a>
</div>
<div class="modal-footer">
<button {{action "closeModal"}} class="btn btn-default btn-minor">Cancel</button>
{{#gh-task-button task=deleteTheme class="btn btn-red"}}Delete{{/gh-task-button}}
</div>