I'm receiving the following error message on my home page "index.php":
Here is the code in index.php:
ERROR! ATTRIB_NAME: Invalid char "" (line: 1 char: 131)
Here is the code in index.php:
- Code: Select all
<?php require_once( 'qwerty/cms.php' ); ?>
<cms:template title='Main Template' clonable='1'>
<cms:editable name='content' label='Content' desc='Enter the page's content here' type='richtext' />
</cms:template>
<cms:embed 'doctype.txt' />
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><cms:show k_page_title /> - MSU Jazz Studies</title>
<meta name="description" content="<cms:embed 'description.txt' />" />
<meta name="keywords" content="<cms:embed 'keywords.txt' />" />
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div id="container">
<div id="header">
<cms:embed 'header.txt' />
</div>
<div id="content">
<div id="navigation">
<cms:menu masterpage='index.php' depth='1' />
<div id="social">
<cms:embed 'social.txt' />
</div>
</div>
<h1><cms:show k_page_title /></h1>
<cms:show content />
</div>
<div id="footer">
<cms:embed 'footer.txt' />
</div>
</div>
</body>
</html>
<?php COUCH::invoke(); ?>