I'm trying to do something like this:
For all the requests to /admin/* I need the page to be decorated using the B decorator but also that B decorator has to be included in the content of A decorator which is main application layout.
How can I do that with Sitemesh?
Is it even possible? Or do I have to repeat the same layout from A in the B decorator?
Thanks in advance
Here's the example using freemarker:
To answer my own question. Yes it is possible:
Using my own example, this is decorator b being decorated by decorator a.