2020-11-09 04:32:36 +01:00
|
|
|
<div class="message-block primary">
|
|
|
|
{{#if showIcon}}
|
|
|
|
{{d-icon icon}}
|
|
|
|
{{/if}}
|
2021-04-12 16:19:53 +02:00
|
|
|
<span class="message-content">{{html-safe message}}</span>
|
2020-11-09 04:32:36 +01:00
|
|
|
{{#if hasItems}}
|
|
|
|
<ul>
|
|
|
|
{{#each items as |item|}}
|
|
|
|
<li>
|
|
|
|
<span>{{d-icon item.icon}}</span>
|
2021-04-12 16:19:53 +02:00
|
|
|
<span>{{html-safe item.html}}</span>
|
2020-11-09 04:32:36 +01:00
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
{{/if}}
|
2020-04-20 13:40:32 +02:00
|
|
|
</div>
|
|
|
|
|
2020-11-09 04:32:36 +01:00
|
|
|
{{#if showDocumentation}}
|
|
|
|
<div class="message-block">
|
2021-04-12 16:19:53 +02:00
|
|
|
{{d-icon "question-circle"}}
|
|
|
|
|
|
|
|
<a href={{url}} target="_blank" rel="noopener noreferrer">
|
2020-11-09 04:32:36 +01:00
|
|
|
{{documentation}}
|
|
|
|
</a>
|
|
|
|
</div>
|
2021-04-20 19:58:19 +02:00
|
|
|
{{/if}}
|