I am learning new for MVC and PHP Phalcon Framework.
I want, theme engine in my project. What is the best way for theme support ? I have 2 module in my project, "frontend","backend"
folder structure
modules;
/apps/frontend/
apps/backend/
for frontend;
"/public/themes/default"
"/public/themes/blue"
"/public/themes/red"
for backend;
"/apps/backend/views/theme/default"
"/apps/backend/views/theme/blabla"
what should I do for theme supporting ?
thanks for helping.