26 lines
820 B
Handlebars
26 lines
820 B
Handlebars
|
{{#if messages}}
|
||
|
{{#each messages.error}}
|
||
|
<section class="notification-error">
|
||
|
{{.}}
|
||
|
<a class="close" href="#"><span class="hidden">Close</span></a>
|
||
|
</section>
|
||
|
{{/each}}
|
||
|
{{#each messages.success}}
|
||
|
<section class="notification-success">
|
||
|
{{.}}
|
||
|
<a class="close" href="#"><span class="hidden">Close</span></a>
|
||
|
</section>
|
||
|
{{/each}}
|
||
|
{{#each messages.warn}}
|
||
|
<section class="notification-alert">
|
||
|
{{.}}
|
||
|
<a class="close" href="#"><span class="hidden">Close</span></a>
|
||
|
</section>
|
||
|
{{/each}}
|
||
|
{{#each messages.info}}
|
||
|
<section class="notification">
|
||
|
{{.}}
|
||
|
<a class="close" href="#"><span class="hidden">Close</span></a>
|
||
|
</section>
|
||
|
{{/each}}
|
||
|
{{/if}}
|