2009-10-14, 11:12:03
Thats an interesting idea... it could be done by doing what we have in GS now... In the template you could do something like this:
Code:
<?php
if ( return_page_slug() == 'about' ) {
get_component('about-component');
} elseif ( return_page_slug() == 'index' ) {
get_component('homepage-component');
} else {
get_component('generic-component');
}
?>