1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/sources/app/widgets/Notification/_notification.tpl
2015-09-22 08:18:52 +02:00

17 lines
425 B
Smarty

{if="isset($action)"}
<a href="{$action}">
{/if}
<ul class="{if="!isset($picture)"}simple{/if}">
<li class="{if="isset($body)"}condensed{/if}">
{if="isset($picture)"}
<span class="icon bubble"><img src="{$picture}"></span>
{/if}
<span>{$title}</span>
{if="isset($body)"}
<p>{$body}</p>
{/if}
</li>
</ul>
{if="isset($action)"}
</a>
{/if}