2013-05-11 20:44:25 +04:00
|
|
|
{{#if messages}}
|
|
|
|
{{#each messages.error}}
|
2013-06-16 22:45:16 +04:00
|
|
|
<section class="notification-error js-notification">
|
2013-05-11 20:44:25 +04:00
|
|
|
{{.}}
|
|
|
|
<a class="close" href="#"><span class="hidden">Close</span></a>
|
|
|
|
</section>
|
|
|
|
{{/each}}
|
|
|
|
{{#each messages.success}}
|
2013-06-16 22:45:16 +04:00
|
|
|
<section class="notification-success js-notification">
|
2013-05-11 20:44:25 +04:00
|
|
|
{{.}}
|
|
|
|
<a class="close" href="#"><span class="hidden">Close</span></a>
|
|
|
|
</section>
|
|
|
|
{{/each}}
|
|
|
|
{{#each messages.warn}}
|
2013-06-16 22:45:16 +04:00
|
|
|
<section class="notification-alert js-notification">
|
2013-05-11 20:44:25 +04:00
|
|
|
{{.}}
|
|
|
|
<a class="close" href="#"><span class="hidden">Close</span></a>
|
|
|
|
</section>
|
|
|
|
{{/each}}
|
|
|
|
{{#each messages.info}}
|
2013-06-16 22:45:16 +04:00
|
|
|
<section class="notification js-notification">
|
2013-05-11 20:44:25 +04:00
|
|
|
{{.}}
|
|
|
|
<a class="close" href="#"><span class="hidden">Close</span></a>
|
|
|
|
</section>
|
|
|
|
{{/each}}
|
|
|
|
{{/if}}
|