mirror of
https://github.com/openvk/openvk
synced 2025-03-15 05:55:29 +03:00
26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
{extends "../@layout.xml"}
|
|
|
|
{block title}{_suggested} {$club->getCanonicalName()}{/block}
|
|
|
|
{block header}
|
|
<a href="{$club->getURL()}">{$club->getName()}</a>
|
|
» {if $type == "my"}{_suggested_posts_by_you}{else}{_suggested_posts_by_everyone}{/if}
|
|
{/block}
|
|
|
|
{block content}
|
|
{if $count < 1}
|
|
{include "../components/error.xml", title => "", description => $type == "my" ? tr("no_suggested_posts_by_you") : tr("no_suggested_posts_by_people")}
|
|
{else}
|
|
<h4 id="cound">{if $type == "my"}{tr("x_suggested_posts_in_group_by_you", $count)}{else}{tr("x_suggested_posts_in_group", $count)}{/if}</h4>
|
|
{foreach $posts as $post}
|
|
{include "../components/post/microblogpost.xml", post => $post, commentSection => false, suggestion => true, forceNoCommentsLink => true, forceNoPinLink => true, forceNoLike => true, forceNoShareLink => true}
|
|
{/foreach}
|
|
{/if}
|
|
{include "../components/paginator.xml", conf => (object) [
|
|
"page" => $page,
|
|
"count" => $count,
|
|
"amount" => sizeof($posts),
|
|
"perPage" => OPENVK_DEFAULT_PER_PAGE,
|
|
"atBottom" => true,
|
|
]}
|
|
{/block}
|