Forum for discussing general topics related to Couch.
2 posts Page 1 of 1
I'm wondering if I can get a single gallery (named, as an example as index opening or index) image list and use it to build a dynamic index page slideshow like, as an example, this:

http://www.sungeetheme.com/switcher/?theme=frexy-html
Hi Aaron,

Not sure if I follow you completely but, I think, the gallery on the site you mentioned can be created using cms:pages with masterpage set to your gallery template e.g.
Code: Select all
<cms:pages masterpage='gallery.php' >
   ...
</cms:pages>

If you want to single out a particular section from your gallery you can use folders e.g. place all images displayed on the index page in a folder named 'home-page' and then specify the folder with cms:pages
Code: Select all
<cms:pages masterpage='gallery.php' folder='home-page' >
   ...
</cms:pages>

Does this help?
2 posts Page 1 of 1
cron