Using thesame template on the same site twice......... mmmmm thats thesame as using it once! Unless what you mean is changing styles! yes there are a million ways you could do this. ok a simple example
take a look at a joomla url
index.php?option=com_frontpage&task=something [this is obviously your frontpage]
index.php?option=com_content&task=something&bla bla [this will obviously be some content page]
ok say you want to use style A on your front page, and Style B on your content Page, and Style C on your Community Builder page! you can do this by using the php $_GET variable passing the option values through and assing styles per value. So what do i mean
In your RT templates you normally just do something like
now replace that line with something like
if(isset($_GET['option'] && $_GET['option'] !='com_frontpage')
{
switch($_GET['option'] ) {
case 'com_content' :
$style = 'styleB';
break;
case 'com_comprofiler' :
$style = 'styleC';
break;
default:
$style ='styleD';
break;
}
}else{
$style = 'styleA'
}