> > Cool. But is there way to configure the <body> tag of a specific view page > that extends the 'layout.html'? For example, for my custom view, I want its > body tag to be like: > > <body class="my_css_class"> > > Is it possible to configure such thing? Thanks! >
<body class="{{=body_class}}">
and in the view:
{{body_class = 'my_css_class'}}
{{extend 'layout.html'}}
You could also do it with a block.
Anthony

