2021-01-28 17:25:05 +03:00
|
|
|
<div class="fullscreen-wizard-container" {{will-destroy this.reset}}>
|
2021-02-04 17:02:48 +03:00
|
|
|
<div class="pt7 pb5 pl12 pr12 flex justify-between-l items-center bb b--whitegrey">
|
2021-01-28 17:25:05 +03:00
|
|
|
<div class="flex flex-column">
|
|
|
|
<div class="ttu gh-launch-wizard-step-indicator">{{this.currentStep.position}}</div>
|
2021-02-01 19:11:01 +03:00
|
|
|
<h2>{{this.currentStep.title}}</h2>
|
2021-01-28 17:25:05 +03:00
|
|
|
</div>
|
2021-02-08 12:13:26 +03:00
|
|
|
<button type="button" class="close gh-btn gh-btn-outline" title="Close" {{on "click" this.close}} data-test-button="close-wizard">
|
2021-01-26 18:40:14 +03:00
|
|
|
<span>Save and exit</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-01-18 16:48:23 +03:00
|
|
|
|
2021-02-04 17:02:48 +03:00
|
|
|
<div class="flex br3 bg-white">
|
|
|
|
<div class="w-25 ml12">
|
2021-01-28 17:25:05 +03:00
|
|
|
{{component (concat "gh-launch-wizard/" this.step)
|
2021-02-02 21:28:45 +03:00
|
|
|
nextStep=this.goNextStep
|
|
|
|
backStep=this.goBackStep
|
2021-01-28 17:25:05 +03:00
|
|
|
skipStep=this.skipStep
|
|
|
|
refreshPreview=this.refreshPreview
|
|
|
|
updatePreview=this.updatePreview
|
|
|
|
}}
|
|
|
|
</div>
|
|
|
|
|
2021-02-04 17:02:48 +03:00
|
|
|
<div class="relative flex-grow-1 mt10 mr12 mb14">
|
2021-02-02 15:55:42 +03:00
|
|
|
<GhBrowserPreview class="gh-launch-wizard-preview-container" @icon={{this.settings.icon}} @title={{this.config.blogTitle}}>
|
2021-01-28 17:25:05 +03:00
|
|
|
<GhSiteIframe class="gh-launch-wizard-preview" @src={{this.previewSrc}} @guid={{this.previewGuid}}></GhSiteIframe>
|
|
|
|
</GhBrowserPreview>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-01-18 16:48:23 +03:00
|
|
|
</div>
|