blob: 181994b29d37671ad9efc01ddbdb20f42b883a1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
$this->styles($this->html->style('pagination'));
$this->styles($this->html->style('table'));
$this->styles($this->html->style('search'));
?>
<?= $this->_render('element', 'search') ?>
<h2>Manga Search Results</h2>
(search instead for ...)
<?= $this->Paginator->paginate(array('separator' => '')) ?>
<?= $this->_render('element', 'mangatable') ?>
<?= $this->Paginator->paginate(array('separator' => '')) ?>
|