Hello,
I am usunig multi-module application: fronted and backend. The modules have separate views (default structure).
My application will be multisite. Default the structure of the view in frontend is common to all domains (app/frontend/views/). I would like to make additional templates for domains.
Is it possible to do ? If exists Main Layout for domain1.com (themes/domain1.com/main.volt) load... If exists Controller Layout for domain1.com (themes/domain1.com/layouts/index.volt) load... If exists* Action View for domain1.com (themes/domain1.com/index/index.volt) load...
*If NOT exist, load the default from views.
-app
|-frontend
|-views
|-index
|-index.volt
|-layouts
|-index.volt
|-main.volt
|-themes
|-domain1.com
|-index
|-index.volt
|-layouts
|-index.volt
|-main.volt
|-domain2.com
|-main.volt
|-domain3.com
|-main.volt
Alternatively, move the themes folder to views ? Please suggestions