Share Pastebin
Guest
Public paste!

mono

By: a guest | Jun 16th, 2009 | Syntax: None | Size: 0.41 KB | Hits: 159 | Expires: Never
Copy text to clipboard
  1. -------Root.prototype.debug_action
  2.    res.data.title = "awesome page";
  3.    this.renderSkin("specific");
  4.    return;
  5.  
  6. ----- HTML OUTPUT IS
  7. <h1> awesome page </h1>
  8. <div>
  9.  
  10.  
  11. ------- Root/skins/base.skin
  12.  
  13. <h1> <% response.title %> </h1>
  14.  
  15. <div>
  16.    <% #content %>
  17.       default content
  18.  
  19.    <% #content.end %>
  20. </div>
  21.  
  22. ------- Root/skins/specific.skin
  23. <% .extends base %>
  24.  
  25. <% #content %>
  26. content in ext