Error Page

Permalink
Just got this error

Parse error: syntax error, unexpected '<' in /home1/sweetsod/public_html/packages/theme_splash/themes/splash/default.php on line 33


Can you tell me what is missing on line 33?


<?php defined('C5_EXECUTE') or die(_("Access Denied.")); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php Loader::element('header_required'); ?>



<link rel="stylesheet" type="text/css" media="all" href="<?php echo $this->getStyleSheet('general_styles.css');?>" />
<link rel="stylesheet" type="text/css" media="all" href="<?php echo $this->getStyleSheet('typography.css');?>" />
<!--[if lt IE 8]>

<link rel="stylesheet" type="text/css" media="all" href="<?php echo $this->getThemePath()?>/iefix.css" />
<![endif]-->
</head>

<body>
<div id="container"><!-- Start container -->
<div id="navcontainer">
<?php $a = new Area('Header Nav'); $a->display($c); ?>
</div>
<div id="content"><!-- Start main content wrapper -->
<?php $a = new Area('Main'); $a->display($c); ?>
</div><!-- End main content wrapper -->

</div><!-- End container -->
<div id="footer"><!-- Start Footer -->


</div><!-- End Footer -->

<?php
</body>
</html>

 
triplei replied on at Permalink Reply
triplei
you're not closing your <?php in there

however, on a quick glance, I notice that you're missing the concrete footer

maybe you were meaning to do
<?php
Loader::element('footer_required');
?>


there?

Cheers