diff options
Diffstat (limited to 'web/_views/template/posts.php')
| -rw-r--r-- | web/_views/template/posts.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/web/_views/template/posts.php b/web/_views/template/posts.php deleted file mode 100644 index f57a25f..0000000 --- a/web/_views/template/posts.php +++ /dev/null @@ -1,23 +0,0 @@ -<div id="post-container"> -<?php - $pdata = $this->posts(); - - $loaded = $pdata['loaded']; - $page_size = $pdata['page_size']; - $total = $pdata['total']; - $max = $pdata['max']; - - if ($loaded >= $page_size && $page_size < $total) { - ilang('action_load_posts', - id: 'action-load-posts', - class: 'btn btn-line mb', - attrs: array( - 'loaded' => $loaded, - 'pageSize' => $page_size, - 'postCount' => $total, - 'postMax' => $max, - ) - ); - } -?> -</div> |