mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
26 lines
No EOL
884 B
Handlebars
26 lines
No EOL
884 B
Handlebars
{{#if messages}}
|
|
{{#each messages.error}}
|
|
<section class="notification-error js-notification">
|
|
{{.}}
|
|
<a class="close" href="#"><span class="hidden">Close</span></a>
|
|
</section>
|
|
{{/each}}
|
|
{{#each messages.success}}
|
|
<section class="notification-success js-notification">
|
|
{{.}}
|
|
<a class="close" href="#"><span class="hidden">Close</span></a>
|
|
</section>
|
|
{{/each}}
|
|
{{#each messages.warn}}
|
|
<section class="notification-alert js-notification">
|
|
{{.}}
|
|
<a class="close" href="#"><span class="hidden">Close</span></a>
|
|
</section>
|
|
{{/each}}
|
|
{{#each messages.info}}
|
|
<section class="notification js-notification">
|
|
{{.}}
|
|
<a class="close" href="#"><span class="hidden">Close</span></a>
|
|
</section>
|
|
{{/each}}
|
|
{{/if}} |