mirror of
https://github.com/openvk/openvk
synced 2024-12-23 17:12:01 +03:00
73a067a0c5
* rewrite * allow comments scroll * rework to up button * add posts scrolling function and ability to disabl * cloudflare bypass (do not uncomment)
30 lines
1.1 KiB
XML
30 lines
1.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 class="insertThere" id="postz"></div>
|
|
<div id="underHeader">
|
|
<div n:if="$canPost" class="content_subtitle">
|
|
{include "../components/textArea.xml", route => "/wall$owner/makePost", graffiti => true, polls => true, notes => true, hasSource => true}
|
|
</div>
|
|
|
|
<div class="content scroll_container">
|
|
{if sizeof($posts) > 0}
|
|
<div class='scroll_node' n:foreach='$posts as $post'>
|
|
<a name="postGarter={$post->getId()}"></a>
|
|
|
|
{include "../components/post.xml", post => $post, commentSection => true}
|
|
</div>
|
|
{include "../components/paginator.xml", conf => $paginatorConf}
|
|
{else}
|
|
{_no_posts_abstract}
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|