Adding the colorbox css and js to the default template

This commit is contained in:
Kyle Johnson 2013-09-19 11:30:25 -04:00
parent e0a7418d24
commit 9e782ed407
1 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,7 @@ $cakeDescription = __d('cake_dev', 'CakePHP: the rapid development php framework
echo $this->Html->meta('icon');
echo $this->Html->css('jquery-ui.min');
echo $this->Html->css('colorbox');
echo $this->Html->css('bootstrap-theme.min');
echo $this->Html->css('bootstrap.min');
@ -39,6 +40,7 @@ $cakeDescription = __d('cake_dev', 'CakePHP: the rapid development php framework
echo $this->fetch('script');
echo $this->Html->script('jquery-2.0.1.min');
echo $this->Html->script('jquery-ui.min');
echo $this->Html->script('jquery.colorbox-min');
echo $this->Html->script('bootstrap.min');
echo $this->Html->script('main');
?>