2020-06-07 19:04:43 +03:00
|
|
|
{extends "../@layout.xml"}
|
|
|
|
{block title}{_"feed"}{/block}
|
|
|
|
|
|
|
|
{block header}
|
|
|
|
{_"feed"}
|
|
|
|
{/block}
|
|
|
|
|
|
|
|
{block content}
|
2022-06-20 02:27:42 +03:00
|
|
|
<div class="tabs">
|
|
|
|
<div n:attr="id => (isset($globalFeed) ? 'ki' : 'activetabs')" class="tab">
|
|
|
|
<a n:attr="id => (isset($globalFeed) ? 'ki' : 'act_tab_a')" href="/feed">{_my_news}</a>
|
|
|
|
</div>
|
|
|
|
<div n:attr="id => (isset($globalFeed) ? 'activetabs' : 'ki')" class="tab">
|
|
|
|
<a n:attr="id => (isset($globalFeed) ? 'act_tab_a' : 'ki')" href="/feed/all">{_all_news}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div n:class="postFeedWrapper, $thisUser->hasMicroblogEnabled() ? postFeedWrapperMicroblog">
|
2021-10-12 14:16:39 +03:00
|
|
|
{include "../components/textArea.xml", route => "/wall" . $thisUser->getId() . "/makePost"}
|
2020-06-07 19:04:43 +03:00
|
|
|
</div>
|
|
|
|
|
2022-06-20 02:27:42 +03:00
|
|
|
{foreach $posts as $post}
|
|
|
|
<a name="postGarter={$post->getId()}"></a>
|
|
|
|
{include "../components/post.xml", post => $post, onWallOf => true, commentSection => true}
|
|
|
|
{/foreach}
|
|
|
|
|
|
|
|
<div class="postFeedBottom">
|
|
|
|
<div class="postFeedPaginator">
|
|
|
|
{include "../components/paginator.xml", conf => $paginatorConf}
|
|
|
|
</div>
|
|
|
|
<div class="postFeedPageSelect">
|
|
|
|
{_"posts_per_page"}:
|
|
|
|
<br />
|
|
|
|
<select id="pageSelect">
|
|
|
|
<option value="1">1</option>
|
|
|
|
<option value="5">5</option>
|
|
|
|
<option value="10">10</option>
|
|
|
|
<option value="20">20</option>
|
|
|
|
<option value="30">30</option>
|
|
|
|
<option value="40">40</option>
|
|
|
|
<option value="50">50</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
u("#pageSelect").nodes[0].value = {$paginatorConf->perPage};
|
|
|
|
|
|
|
|
u("#pageSelect").on("change", function(e) {
|
|
|
|
let url = "?" + {http_build_query(array_merge($_GET, ['posts' => '__padding']))};
|
|
|
|
window.location.assign(url.replace("__padding", e.target.value));
|
|
|
|
});
|
|
|
|
</script>
|
2021-12-17 22:35:41 +03:00
|
|
|
|
2021-12-24 17:58:04 +03:00
|
|
|
{if isset($thisUser) && $thisUser->hasMicroblogEnabled()}
|
|
|
|
{script "js/al_comments.js"}
|
|
|
|
{/if}
|
|
|
|
{/block}
|