So it looks like Grails' GSP does not have an include tag (correct me if I'm wrong). The closest thing to "include" is to use the render tag. There is also the include plugin.
In my case, I have a classic top-left-middle-right-bottom paned page. The top header or left side would include navigation. The middle would be the content. The right side might include ads. In the JSP version of my app, each pane except for the middle would be in their own JSP. I'd then include (using <jsp:include/>
) the various panels into my page. Is this the right approach in GSP?
What is the preferred pattern of accomplishing this in GSP?