Blame view

src/Template/Element/pagination.ctp 606 Bytes
63c3cb16   epallier   Nombreux petits b...
1
2
3
4
5
6

<!-- La façon cakephp 3.4 avec cake.css -->
<div class="paginator">
	<ul class="pagination">
		<p>
			<!-- La façon inventirap.css 
9478e982   Etienne Pallier   refactorisation d...
7
8
9
    <div class="paging" style="color: black;">
    <div class="paging">
    -->
63c3cb16   epallier   Nombreux petits b...
10
11
12
13
14
15
16
17
18
19
20
21
22
23
    	<?php
    echo $this->Paginator->counter([
        'format' => 'Page {{page}} sur {{pages}}'
    ]);
    echo $this->Paginator->prev('< ' . __(''), [
        'class' => 'prev disabled'
    ]);
    echo $this->Paginator->numbers([
        'separator' => ''
    ]);
    echo $this->Paginator->next(__('') . ' >', [
        'class' => 'next disabled'
    ]);
    ?>
9478e982   Etienne Pallier   refactorisation d...
24
25
    </p>
	</ul>
63c3cb16   epallier   Nombreux petits b...
26
</div>