Added $links_per_page variable to template and display on default

This commit is contained in:
Keith Carangelo 2020-08-29 11:02:59 -04:00
parent bea062149e
commit 816ffba74b
3 changed files with 16 additions and 4 deletions

View file

@ -149,6 +149,8 @@ class PageBuilder
$this->tpl->assign('formatter', $this->conf->get('formatter', 'default'));
$this->tpl->assign('links_per_page', $_SESSION['LINKS_PER_PAGE']);
// To be removed with a proper theme configuration.
$this->tpl->assign('conf', $this->conf);
}

View file

@ -618,6 +618,11 @@ body,
color: $dark-grey;
}
a.selected {
background: var(--main-color);
color: $white;
}
input {
&[type='text'] {
@extend %linksperpage-button;

View file

@ -53,11 +53,16 @@
<div class="linksperpage pure-u-1-3">
<div class="pure-u-0 pure-u-lg-visible">{'Links per page'|t}</div>
<a href="{$base_path}/links-per-page?nb=20">20</a>
<a href="{$base_path}/links-per-page?nb=50">50</a>
<a href="{$base_path}/links-per-page?nb=100">100</a>
<a href="{$base_path}/links-per-page?nb=20"
{if="$links_per_page == 20"}class="selected"{/if}>20</a>
<a href="{$base_path}/links-per-page?nb=50"
{if="$links_per_page == 50"}class="selected"{/if}>50</a>
<a href="{$base_path}/links-per-page?nb=100"
{if="$links_per_page == 100"}class="selected"{/if}>100</a>
<form method="GET" class="pure-u-0 pure-u-lg-visible" action="{$base_path}/links-per-page">
<input type="text" name="nb" placeholder="133">
<input type="text" name="nb" placeholder="133"
{if="$links_per_page != 20 && $links_per_page != 50 && $links_per_page != 100"}
value="{$links_per_page}"{/if}>
</form>
<a href="#" class="filter-off fold-all pure-u-0 pure-u-lg-visible" aria-label="{'Fold all'|t}" title="{'Fold all'|t}">
<i class="fa fa-chevron-up" aria-hidden="true"></i>