mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
f931f27dd4
refs TryGhost/Ghost#8107 - Replaces icon font with `{{inline-svg}}` helper incl. necessary style adjustments.
28 lines
1.1 KiB
Handlebars
28 lines
1.1 KiB
Handlebars
<div class="gh-flow">
|
|
<header class="gh-flow-head">
|
|
<nav class="gh-flow-nav">
|
|
{{#if showBackLink}}
|
|
{{#link-to backRoute classNames="gh-flow-back"}}{{inline-svg "arrow-left-small"}} Back{{/link-to}}
|
|
{{/if}}
|
|
<ol>
|
|
{{#gh-activating-list-item route="setup.one" linkClasses="step"}}
|
|
{{inline-svg "check-circle"}}<span class="num">1</span>
|
|
{{/gh-activating-list-item}}
|
|
<li class="divider"></li>
|
|
{{#gh-activating-list-item route="setup.two" linkClasses="step"}}
|
|
{{inline-svg "check-circle"}}<span class="num">2</span>
|
|
{{/gh-activating-list-item}}
|
|
<li class="divider"></li>
|
|
{{#gh-activating-list-item route="setup.three" linkClasses="step"}}
|
|
{{inline-svg "check-circle"}}<span class="num">3</span>
|
|
{{/gh-activating-list-item}}
|
|
</ol>
|
|
</nav>
|
|
</header>
|
|
<div class="gh-flow-content-wrap">
|
|
<section class="gh-flow-content">
|
|
{{outlet}}
|
|
</section>
|
|
</div>
|
|
</div>
|