I'm testing ui and themes for new Grails web-app I need to develop.
I would like to know if it's possibile to override theme zones (http://grailsrocks.github.io/grails-platform-ui/guide/creatingThemes.html#themeRequiredZones) in my app.
I know it's possible for theme layouts and ui sets templates (http://grailsrocks.github.io/grails-platform-ui/guide/advanced.html#advancedOverridingThemeLayouts).
In concrete in my test app I would like to override:
<theme:layoutTemplate name="header"/>
/grails-app/views/_themes/Bootstrap/_header.gsp
and
<theme:layoutZone name="navigation"/>
/grails-app/views/_themes/Bootstrap/default/_navigation.gsp
Here is my Config.groovy:
compile ":platform-ui:1.0.RC3"
runtime ':bootstrap-theme:1.0.RC3'
grails.plugin.location.'grails-platform-ui-scaffolding' = "../grails-platform-ui-scaffolding"