Hi All,
I have a page with a list of Testimonials that are added through the admin panel. They are added through cms:repeatable and <cms:show />. Is it possible to paginate these Repeatable regions on the one page. I have around 100 testimonials and would like to limit 6 to each pagination.
My current code is:
and
If there is a solution or an alternative way of achieving this I would be grateful for any ones input. I am a beginner to Couch CMS so an idiots guide would be appreciated.
I have a page with a list of Testimonials that are added through the admin panel. They are added through cms:repeatable and <cms:show />. Is it possible to paginate these Repeatable regions on the one page. I have around 100 testimonials and would like to limit 6 to each pagination.
My current code is:
- Code: Select all
<cms:template title='Guest Book' />
<cms:repeatable name="testimonials" label='Testimonials' >
<cms:editable name='quote'
label="Quote"
type="text" />
<cms:editable name='name'
label="Name"
type="text" />
</cms:repeatable>
and
- Code: Select all
<cms:show_repeatable 'testimonials' >
<blockquote class="style1"><span><cms:show quote /></span>
<span class="quoteorigin"><cms:show name /></span></blockquote>
<hr class="decorated">
</cms:show_repeatable>
If there is a solution or an alternative way of achieving this I would be grateful for any ones input. I am a beginner to Couch CMS so an idiots guide would be appreciated.