diff options
author | raylu <raylu@mixpanel.com> | 2011-07-10 23:33:55 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-10 23:33:55 -0700 |
commit | db7bd2d1f511fafe73eccb3bf96a9c1bfdc7d099 (patch) | |
tree | 82268fc34a2e388b77e3f1cf904bb0cc0d0ca9cc /views | |
parent | 2e6016922cfeaf32e69f65df8178d71387782e2c (diff) | |
download | otakuhub-db7bd2d1f511fafe73eccb3bf96a9c1bfdc7d099.tar.xz |
pagination styling
Diffstat (limited to 'views')
-rw-r--r-- | views/search/anime.html.php | 5 | ||||
-rw-r--r-- | views/search/index.html.php | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/views/search/anime.html.php b/views/search/anime.html.php index 70a6315..485e389 100644 --- a/views/search/anime.html.php +++ b/views/search/anime.html.php @@ -1,3 +1,6 @@ +<?php +$this->styles($this->html->style('pagination')); +?> <div class="container_12"> <div class="grid_4"> @@ -24,4 +27,4 @@ <?=$this->Paginator->paginate(array('separator' => '', 'action' => 'index/anime')); ?> </div> <br class="cl"> -</div>
\ No newline at end of file +</div> diff --git a/views/search/index.html.php b/views/search/index.html.php index 91bc1fa..ffdd82c 100644 --- a/views/search/index.html.php +++ b/views/search/index.html.php @@ -1,4 +1,5 @@ <?php +$this->styles($this->html->style('pagination')); //table helper function table($data, array $headers = array(), array $options = array()) { @@ -47,4 +48,4 @@ function table($data, array $headers = array(), array $options = array()) { <?=$this->Paginator->paginate(array('separator' => '', 'action' => 'index/anime')); ?> </div> <br class="cl"> -</div>
\ No newline at end of file +</div> |