19 lines
517 B
PHP
19 lines
517 B
PHP
<table>
|
|
<tbody>
|
|
<tr>
|
|
<# if ( 'error' === data.type ) { #>
|
|
<td class="o2-notification-icon"></td>
|
|
<# } #>
|
|
<td class="o2-notification-message">
|
|
<# if ( data.hasLink ) { #>
|
|
<a href="#" class="o2-notification-link">{{{ data.text }}}</a>
|
|
<# } else { #>
|
|
{{{ data.text }}}
|
|
<# } #>
|
|
</td>
|
|
<# if ( data.isSticky && data.isCloseable ) { #>
|
|
<td class="o2-notification-close"><a href="#" class="o2-notification-close"></a></td>
|
|
<# } #>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|