mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Added dynamic site title to the checklist
ref https://linear.app/tryghost/issue/IPC-76/add-static-checklist-to-the-dashboard
This commit is contained in:
parent
53310b52c1
commit
7b70b60ad4
2 changed files with 8 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
<video width="100" height="100" loop autoplay muted playsinline preload="metadata" style="width: 100px; height: 100px; margin-bottom: 24px;">
|
||||
<source src="assets/videos/logo-loader.mp4" type="video/mp4" />
|
||||
</video>
|
||||
<h2 class="gh-canvas-title">Maker Stations is ready to go!</h2>
|
||||
<h2 class="gh-canvas-title">{{this.siteUrl}} is ready to go!</h2>
|
||||
<p>Let’s set your brand new publication up for success.</p>
|
||||
</div>
|
||||
|
||||
|
@ -76,7 +76,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<p class="gh-onboarding-help">Need some more help? Check out our <a href="#">Help Center</a></p>
|
||||
<p class="gh-onboarding-help">Need some more help? Check out our <a href="https://ghost.org/help?utm_source=admin&utm_campaign=onboarding" target="_blank" rel="noopener noreferrer">Help center</a></p>
|
||||
|
||||
<a href="#" class="gh-onboarding-skip">Skip onboarding</a>
|
||||
</div>
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
import Component from '@glimmer/component';
|
||||
import {action} from '@ember/object';
|
||||
import {inject} from 'ghost-admin/decorators/inject';
|
||||
import {tracked} from '@glimmer/tracking';
|
||||
|
||||
export default class OnboardingChecklist extends Component {
|
||||
@inject config;
|
||||
@tracked customizePublication = false;
|
||||
@tracked createPost = false;
|
||||
@tracked buildAudience = false;
|
||||
|
@ -10,6 +12,10 @@ export default class OnboardingChecklist extends Component {
|
|||
|
||||
@tracked showMemberTierModal = false;
|
||||
|
||||
get siteUrl() {
|
||||
return this.config.blogTitle;
|
||||
}
|
||||
|
||||
@action
|
||||
completeStep(step) {
|
||||
this.completed = !this.completed;
|
||||
|
|
Loading…
Add table
Reference in a new issue