0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/server/views/partials/notifications.hbs

11 lines
375 B
Handlebars
Raw Normal View History

2013-05-11 11:44:25 -05:00
{{#if messages}}
{{#each messages}}
<div class="js-bb-notification">
<section class="notification{{#if type}}-{{type}}{{/if}} notification-{{status}} js-notification">
{{{message}}}
<a class="close" href="#" data-id="{{id}}"><span class="hidden">Close</span></a>
</section>
</div>
2013-05-11 11:44:25 -05:00
{{/each}}
{{/if}}