- -------Root.prototype.debug_action
- res.data.title = "awesome page";
- this.renderSkin("specific");
- return;
- ----- HTML OUTPUT IS
- <h1> awesome page </h1>
- <div>
- ------- Root/skins/base.skin
- <h1> <% response.title %> </h1>
- <div>
- <% #content %>
- default content
- <% #content.end %>
- </div>
- ------- Root/skins/specific.skin
- <% .extends base %>
- <% #content %>
- content in ext
