I have an AI template that was designed for this page but not sure if i need a front end person or a back end person to make the bridge from design to an actual live page using the cake framework... i know there is some documentation on templates using cake, do we slice it up normally and then just add the content to the framework?
CakePHP, like may other web frameworks, has a template system that divided into a few sections (find out more at the Cake Manual's View page):
I'll admit that I don't do much with CakePHP, but these concepts are similar across many frameworks.
do we slice it up normally and then just add the content to the framework
When slicing you'll need to keep the different kinds of templates in mind. Slice up the common elements into a Layout Template. Slice up the action specific portions into small View Templates designed to be inserted into the Layout Template. Slice common dynamic elements into Helper/Element Templates.
not sure if i need a front end person or a back end person to make the bridge from design to an actual live page using the cake framework
Someone with front end experience will be able to create the templates, but you'll need someone with backend experience to create the Controllers (the code that does whatever it is your site does) and tie everything together.