mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
482740e682
No issue - Prevent download count ajax request from running forever, even after setup is complete. - Remove unneeded setup routes and controllers. - Refactor to use ES6-imported ajax. - Refactor to use injected services.
28 lines
1.0 KiB
Handlebars
28 lines
1.0 KiB
Handlebars
<div class="gh-flow">
|
|
|
|
<header class="gh-flow-head">
|
|
<nav class="gh-flow-nav">
|
|
{{!-- TODO: this should only appear on screens 2 & 3 --}}
|
|
<a class="gh-flow-back" href="#"><i class="icon-arrow-left"></i> Back</a>
|
|
<ol>
|
|
{{#gh-activating-list-item route="setup.one" linkClasses="step"}}
|
|
<i class="icon-check"></i><span class="num">1</span>
|
|
{{/gh-activating-list-item}}
|
|
<li class="divider"></li>
|
|
{{#gh-activating-list-item route="setup.two" linkClasses="step"}}
|
|
<i class="icon-check"></i><span class="num">2</span>
|
|
{{/gh-activating-list-item}}
|
|
<li class="divider"></li>
|
|
{{#gh-activating-list-item route="setup.three" linkClasses="step"}}
|
|
<i class="icon-check"></i><span class="num">3</span>
|
|
{{/gh-activating-list-item}}
|
|
</ol>
|
|
</nav>
|
|
</header>
|
|
|
|
<div class="gh-flow-content-wrap">
|
|
{{outlet}}
|
|
</div>
|
|
|
|
</div>
|