openvk/Web/Presenters/templates/components/wall.xml
Maxim Leshchenko e4452aca7e
Fixup "Microblog: Fix reply button in inline comments below post"
All the same, I forgot to add these files to the commit :3
2021-12-17 21:35:41 +02:00

31 lines
1 KiB
XML

<div class="content_divider">
<div class="content_title_expanded" onclick="hidePanel(this);">
{_"wall"}
<nobold>
{tr("wall", $count)}
<a href="/wall{$owner}" class="float-right lowercase">{_all_title}</a>
</nobold>
</div>
<div>
<div n:if="$canPost" class="content_subtitle">
{include "../components/textArea.xml", route => "/wall$owner/makePost", graffiti => true}
</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>
{if isset($thisUser) && $thisUser->hasMicroblogEnabled()}
{script "js/al_comments.js"}
{/if}