Not reading CSS or JS after 5.7.2.2 upgrade

Permalink
I recently updated my site to 5.7.2.2 and and it appears that my CSS and JS are not being read. Anyone have any ideas as to why? Here's my site:

http://www.sandpiperbaygolf.com

Thanks!

 
Mnkras replied on at Permalink Reply
Mnkras
Thats 5.4.2.2, big difference.
melmuler replied on at Permalink Reply 1 Attachment
Thank you! You're right...that's a big difference. While upgrading to a more recent release, I've received this error. Any ideas how to fix it?
rge replied on at Permalink Reply
I think you should start reading the development documents. A few things changed for example:

//old
$this->inc('elements/header.php');
//new 
$view->inc('elements/header.php'); 
//old
<script type="text/javascript" src="<?php echo $this->getThemePath()?>/js/library.js"></script>
//new
<script type="text/javascript" src="<?php echo $view->getThemePath()?>/js/library.js"></script>


http://www.concrete5.org/documentation/developers/5.7/designing-for...