Ghost/ghost/admin/app/templates/launch.hbs
Kevin Ansfield d48abaa1f8 Added outline launch wizard framework
refs https://github.com/TryGhost/Team/issues/450

- adds `launch/*` routes corresponding to launch wizard steps
- sets up navigation between each wizard step
- adds components for each `launch/*` step to contain step-related functionality and facilitate later refactoring to a generalised wizard component
- adds link to the launch wizard from the dashboard screen
2021-01-18 13:48:23 +00:00

8 lines
287 B
Handlebars

<div class="fullscreen-wizard-container">
<button type="button" class="close absolute top-6 right-6 w6" title="Close" {{on "click" this.close}} data-test-button="close-wizard">
{{svg-jar "close"}}
<span class="hidden">Close</span>
</button>
{{outlet}}
</div>