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.
48 lines
2.0 KiB
48 lines
2.0 KiB
<br />
|
|
<hr />
|
|
{if="$reply != null"}
|
|
<ul class="list thick active recessed"
|
|
onclick="window.location.replace('{$c->route('post', [$reply->server, $reply->node, $reply->nodeid])}')">
|
|
<li>
|
|
{if="$reply->picture"}
|
|
<span
|
|
class="primary icon bubble gray"
|
|
style="background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%), url({$reply->picture});">
|
|
<i class="material-symbols flip-hor">reply</i>
|
|
</span>
|
|
{elseif="$reply->isMicroblog() && $reply->contact"}
|
|
<span class="primary icon bubble gray" style="background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%), url({$reply->contact->getPicture(\Movim\ImageSize::L)});">
|
|
<i class="material-symbols">reply</i>
|
|
</span>
|
|
{/if}
|
|
<span class="control icon gray">
|
|
<i class="material-symbols">chevron_right</i>
|
|
</span>
|
|
<div>
|
|
<p class="normal line">{$reply->title}</p>
|
|
<p>{$reply->getContent()|html_entity_decode|stripTags}</p>
|
|
<p>
|
|
{if="$reply->isMicroblog() && $reply->contact"}
|
|
<i class="material-symbols">people</i> {$reply->contact->truename}
|
|
{else}
|
|
<i class="material-symbols">group_work</i> {$reply->node}
|
|
{/if}
|
|
<span class="info">
|
|
{$reply->published|prepareDate:true,true}
|
|
</span>
|
|
</p>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
{else}
|
|
<ul class="list thick active faded">
|
|
<li>
|
|
<span class="primary icon gray">
|
|
<i class="material-symbols">reply</i>
|
|
</span>
|
|
<div>
|
|
<p class="line normal">{$c->__('post.original_deleted')}</p>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
{/if}
|