app/template/default/Mypage/pagenavi.twig line 1

Open in your IDE?
  1.     <div class="pagenavi" style="border-{{ displine }}: 1px solid #03a9a5;">
  2.         <div class="pageDisp" style="font-weight: bold; font-size: 14px;">
  3.             {{pager.anKaishi}}~{{pager.anOwari}}までを表示中(履歴数:{{ orderCnt }})
  4.         </div>
  5.         <div class="pageNumber" style="float:right;">
  6.         {% if pager.next is not null %}
  7.             <a href="?{% if pager.params_url is not empty %}{{ pager.params_url }}{% endif %}page={{ pager.next }}">
  8.                 <img src="https://img0.land-mark.biz/ut_img/public_images/search/page_next.gif" width="47" height="23" alt="次へ">
  9.             </a>
  10.         {% endif %}
  11.         <table>
  12.             <tr>
  13.             {% for key, page in pager.page_list %}
  14.                 {% if page == pager.page %}
  15.                 <td class='num select'>{{ page }}</td>
  16.                 {% else %}
  17.                 <td class='num'><a href="?{% if pager.params_url is not empty %}{{ pager.params_url }}{% endif %}{% if page !=1 %}page={{ page }}{% endif %}">{{ page }}</a></td>
  18.                 {% endif %}
  19.             {% endfor %}
  20.             </tr>
  21.         </table>
  22.         {% if pager.prev is not null %}
  23.             <a href="?{% if pager.params_url is not empty %}{{ pager.params_url }}{% endif %}page={{ pager.prev }}">
  24.                 <img src="https://img0.land-mark.biz/ut_img/public_images/search/page_back.gif" width="47" height="23" alt="前へ">
  25.             </a>
  26.         {% endif %}
  27.         </div>
  28.     </div>
  29.     <br class="clear" />