Topic: Can you write conditional php between index and viewforum/topic?
I'd like to show
div class=one
if it is the index.php
and
div class=two
if is is the viewforum.php or viewtopic.php
<?php
if (is_index.php)
'<div class="one">'
else
'<div class="two">'
?>
It seems like this is all done in the main.tpl
can i add condtional php to the main.tpl?
confused...