I'm trying to implement a system that allows a page editor to create pages based on pre-existing visual "modules". What I've done is create a page template for each of these module (since they may have different properties). I also created a master page container template which is create the actual "page" viewed by the end-user. The author simply creates child pages based on the visual module templates - something like this:
Code: Select all
Container Page
- Sub-page 1
- Sub-page 2
- Sub-page 3
Code: Select all
{foreach from=$nodelist item=node}
{fetch file=$node->url}
{/foreach}
If this explanation does not make sense, I can try and give more content.
TIA
-Sanjay