The following sample design was used to retrofit Couch in it.
download (1).png
download (1).png (6.89 KiB) Viewed 3207 times


The essense of the solution is withing cms:paginator block
Code: Select all
<cms:paginator adjacents='1'>
    <cms:if k_crumb_type='prev' ><li><a href="<cms:show k_crumb_link />">←</a></li></cms:if>
     <cms:if k_crumb_type='page' ><li <cms:if k_crumb_current >class="active"</cms:if> ><a href="<cms:show k_crumb_link />"><cms:show k_crumb_text /></a></li></cms:if>
     <cms:if k_crumb_type='next' ><li><a href="<cms:show k_crumb_link />">→</a></li></cms:if>
</cms:paginator>


I haven't found any similar snippet with "k_crumb_link" and share it to save some time.