open-vault/ui/app/templates/components/wizard-section.hbs

21 lines
513 B
Handlebars
Raw Normal View History

2018-08-28 05:03:55 +00:00
<div class="wizard-section {{class}}">
<h2 class="title is-6">
{{#if headerIcon}}
<Icon @glyph={{headerIcon}} class="hs-icon-l" aria-hidden="true" />
2018-08-28 05:03:55 +00:00
{{/if}}
{{headerText}}
</h2>
{{yield}}
{{#if instructions}}
<div class="wizard-instructions">
<h2 class="title is-6">What to do</h2>
<p>{{instructions}}</p>
</div>
{{/if}}
2018-08-28 05:03:55 +00:00
{{#if docText}}
<DocLink @path={{docPath}}>
<Icon @glyph="learn" aria-hidden="true" /> {{docText}}
2018-08-28 05:03:55 +00:00
</DocLink>
{{/if}}
</div>