Better bootstrap template with as little text as possible.
This commit is contained in:
parent
bfa0ca3788
commit
90847eb85b
7 changed files with 33 additions and 22 deletions
4
book.php
4
book.php
|
@ -438,13 +438,13 @@ class Book extends Base {
|
|||
$entry = new Entry (localize ("allbooks.title"),
|
||||
self::ALL_BOOKS_ID,
|
||||
str_format (localize ("allbooks.alphabetical", $nBooks), $nBooks), "text",
|
||||
array ( new LinkNavigation ("?page=".parent::PAGE_ALL_BOOKS)));
|
||||
array ( new LinkNavigation ("?page=".parent::PAGE_ALL_BOOKS)), "", $nBooks);
|
||||
array_push ($result, $entry);
|
||||
if ($config['cops_recentbooks_limit'] > 0) {
|
||||
$entry = new Entry (localize ("recent.title"),
|
||||
self::ALL_RECENT_BOOKS_ID,
|
||||
str_format (localize ("recent.list"), $config['cops_recentbooks_limit']), "text",
|
||||
array ( new LinkNavigation ("?page=".parent::PAGE_ALL_RECENT_BOOKS)));
|
||||
array ( new LinkNavigation ("?page=".parent::PAGE_ALL_RECENT_BOOKS)), "", $config['cops_recentbooks_limit']);
|
||||
array_push ($result, $entry);
|
||||
}
|
||||
return $result;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue