openvk/Web/Presenters/templates/Wall/Post.xml

41 lines
1.3 KiB
XML
Raw Normal View History

2020-06-07 19:04:43 +03:00
{extends "../@layout.xml"}
{block title}{_"post"}{/block}
2022-06-18 15:03:08 +03:00
{block headIncludes}
{var $description = iconv_substr(strip_tags($post->getText()), 0, 96)}
<meta n:if="!empty($description)" name="description" content="{$post->getOwner()->getCanonicalName()} {$post->getPublicationTime()}&mdash; {$description}" />
{/block}
2020-06-07 19:04:43 +03:00
{block header}
2022-06-18 15:03:08 +03:00
<a href="{$wallOwner->getURL()}">
{$wallOwner->getCanonicalName()}
</a>
»
<a href="/wall{$wallOwner->getId() * ($isWallOfGroup ? -1 : 1)}">
{_wall}
</a>
»
{_"post"}
2020-06-07 19:04:43 +03:00
{/block}
{block content}
{include "../components/post.xml", post => $post, forceNoCommentsLink => TRUE, forceNoDeleteLink => TRUE}
<hr/>
<div style="float: left; min-height: 100px; width: 68%;">
{include "../components/comments.xml",
comments => $comments,
count => $cCount,
page => $cPage,
model => "posts",
parent => $post }
</div>
<div style="float: left; min-height: 100px; width: 32%;">
2020-08-20 17:05:00 +03:00
<h4>{_actions}</h4>
{if isset($thisUser)}
2022-04-24 08:06:45 +03:00
{var $canDelete = $post->canBeDeletedBy($thisUser)}
{/if}
2020-08-20 17:05:00 +03:00
<a n:if="$canDelete ?? false" class="profile_link" style="display:block;width:96%;" href="/wall{$post->getPrettyId()}/delete">{_delete}</a>
2020-06-07 19:04:43 +03:00
</div>
{/block}