mirror of
https://github.com/friendica/friendica
synced 2024-11-15 22:53:54 +00:00
17 lines
770 B
Smarty
17 lines
770 B
Smarty
{{*
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*}}
|
|
<li class="notification-{{if !$notify.seen}}un{{/if}}seen notif-entry">
|
|
<div class="notif-entry-wrapper media">
|
|
<div class="notif-photo-wrapper media-object pull-left" aria-hidden="true">
|
|
<a href="{{$notify.contact.url}}" class="userinfo click-card" tabIndex="-1"><img data-src="{{$notify.contact.photo}}" alt="" loading="lazy"></a>
|
|
</div>
|
|
<a href="{{$notify.href}}" class="notif-desc-wrapper media-body">
|
|
{{$notify.richtext nofilter}}
|
|
<div><time class="notif-when time" data-toggle="tooltip" title="{{$notify.localdate}}">{{$notify.ago}}</time></div>
|
|
</a>
|
|
</div>
|
|
</li>
|