Reputation: 1107
Is there a way to modify CakePHP's default layout without needing to make my own? I am in the process of developing the back-end but would like to have something easy to looking at in the front-end for testing.
I know I need to make default.ctp
in views/layout
but but I don't want to make a layout from scratch.
Upvotes: 0
Views: 118
Reputation: 522016
Copy the default.ctp
layout from cake/libs/views/layouts/
into app/views/layouts/
and modify it as needed.
Upvotes: 2