Template issue?

PixelPusher

Super Moderator
Staff member
Looks like you might need PHP installed on your server. I also did not see a doctype declaration? Even if this is a HTML5 site you should still have a "<doctype>" tag.

To find out what PHP, if any, is installed on your server look into the phpinfo() function
Code:
<?php 
phpinfo();
?>
 
Top