mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
682 B
21 lines
682 B
<ul class="list thick {if="isset($action) || isset($onclick)"}active{/if}"
|
|
{if="isset($onclick)"}
|
|
onclick="{$onclick}; Notif.snackbarClear();"
|
|
{elseif="isset($action)"}
|
|
onclick="MovimUtils.reload('{$action}')"
|
|
{/if}
|
|
>
|
|
<li>
|
|
{if="isset($picture)"}
|
|
<span class="primary icon bubble"><img src="{$picture}"></span>
|
|
{else}
|
|
<span class="primary icon gray"><i class="material-symbols">notification</i></span>
|
|
{/if}
|
|
<div>
|
|
<p class="normal line two">{$title}</p>
|
|
{if="isset($body)"}
|
|
<p class="line two">{$body}</p>
|
|
{/if}
|
|
</div>
|
|
</li>
|
|
</ul>
|