If I wanted list view of a clonable page to display a page with a specific ID, is there any way to do that?

trendoman wrote: A page-view is available anywhere with cms:pages. Details about parameters are in docs, also id=id-of-yourpage. If you have more specific request, please explain.
<cms:if k_is_home>
<cms:pages masterpage='book.php' id='1'>
Do I have to duplicate the entirety of my html here?
</cms:pages>
<cms: else />
Main HTML
</cms:if>
Do I have to duplicate the entirety of my html here?
<cms:if k_is_home>
<cms:pages masterpage='book.php' id='1'>
<cms:embed 'book_details.html' />
</cms:pages>
<cms: else />
<cms:embed 'book_details.html' />
</cms:if>
<cms:if k_is_home>
<cms:pages masterpage='book.php' id='1'>
<cms:redirect k_page_link />
</cms:pages>
<cms: else />
Main HTML
</cms:if>
KK wrote: As an alternative, you can redirect the visitor to the first page when she lands on the home page e.g. as follows -
- Code: Select all
<cms:if k_is_home>
<cms:pages masterpage='book.php' id='1'>
<cms:redirect k_page_link />
</cms:pages>
<cms: else />
Main HTML
</cms:if>
Hope it helps.
<cms:if k_is_home>
<cms:redirect url="<cms:link masterpage='book.php' page='test-page' />" />
<cms:else />
rest of the normal page
<cms:if k_is_home>
<cms:masquerade url="<cms:link masterpage='book.php' page='test-page' />"/>
<cms:else />
rest of the normal page
trendoman wrote: I question the whole redirect thing.
Landing on site.com/gallery/ would redirect me as per your setup to site.com/gallery/davinci.html in the best caseor
site.com/some-other-template/![]()
Can you tell me why this is required?
Also, from the point of seo, home/list view serves role of a hub to other pages, so if your setup is different, it is very interesting to know more about what you are trying to accomplish.