无法将模板添加到 cakephp 2

cant add template to cakephp 2

我正在尝试向 cakephp 2 添加模板。该网站名为 Calm,可从下面的 link 中找到。我的问题是加载不正确。指令是简单地将文件放在正确的目录中,但并不是那么简单。我下载文件并在 webroot

I place index.html in the view.layout and call it test.ctp
I place the style.css in /css
I place all the Js file in /js

我将所有图片路径更改为 "images/"

布局确实加载了,但是图像加载了 none,我怀疑 js 不起作用

http://www.cakephpexpert.com/blog/free-cakephp-templates

将index.html重命名为index.ctp,默认的cakephp图像目录是'/img',如果你想使用自己的,尝试以斜杠开始路径```$this->Html->image('/images/your.jpg')``