I had the default content installed and I uploaded the template. I found out this bug:
<?php if ($this->params->get(‘show_page_title’)) : ?>
<h1 class=”componentheading<?php echo $this->escape($this->params->get( ‘pageclass_sfx’ ); ?>”><?php echo $this->section->title; ?></h1>
<?php endif; ?>
Rewrite it to:
<?php if ($this->params->get(‘show_page_title’)) : ?>
<h1 class=”componentheading<?php echo $this->escape($this->params->get( ‘pageclass_sfx’ )); ?>”><?php echo $this->section->title; ?></h1>
<?php endif; ?>
One ‘)’ is missing in htmlcom_contentsectiondefault.php.
Error is unexpected ;. 🙂 Btw, thanks for the nice template. (http://www.guifreaks.net)