Recently started using cakePHP and having trouble finding answers in the documentation. I decided to utilize the free admin template, Sufee template SufeeAdminTemplate
According to the documentation, cakePHP references webroot/css for styles. So, I moved all css files from the Sufee directory to /webroot/css.
Now, I'm looking to load these files on every page, totaling about 10 css files.
Currently, I can only render the css by including the following lines on each page:
echo $this->Html->css('style');
echo $this->Html->css('font-awesome.min');
This method doesn't seem very efficient and it should be possible to include the entire css directory for every project page.