mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
36 lines
1,011 B
XML
36 lines
1,011 B
XML
{extends "../@layout.xml"}
|
|
{block title}{_"wall"}{/block}
|
|
|
|
{block header}
|
|
<a href="{$oObj->getURL()}">{$oObj->getCanonicalName()}</a>
|
|
»
|
|
{_"wall"}
|
|
<div style="float:right;">
|
|
<span>
|
|
<b>{tr("wall", $count)}</b>
|
|
</span>
|
|
</div>
|
|
{/block}
|
|
|
|
{block content}
|
|
<div class="content_divider">
|
|
<div>
|
|
<div n:if="$canPost" class="content_subtitle">
|
|
{include "../components/textArea.xml", route => "/wall$owner/makePost"}
|
|
</div>
|
|
|
|
<div class="content">
|
|
{if sizeof($posts) > 0}
|
|
{foreach $posts as $post}
|
|
<a name="postGarter={$post->getId()}"></a>
|
|
|
|
{include "../components/post.xml", post => $post, commentSection => true}
|
|
{/foreach}
|
|
{include "../components/paginator.xml", conf => $paginatorConf}
|
|
{else}
|
|
{_no_posts_abstract}
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/block}
|