Guest

hns

By: a guest on Apr 2nd, 2009  |  syntax: None  |  size: 0.40 KB  |  hits: 595  |  expires: Never
download  |  raw  |  embed  |  report abuse
This paste has a previous version, view the difference. Copied
  1. ------------ base.skin
  2. <body>
  3.    <% render #header %>
  4.    <% render #content %>
  5. </body>
  6.  
  7. <% #header %>
  8. Hello World!
  9.  
  10. <% #content %>
  11. Base content
  12.  
  13. ----- and in the extending skin base_simon.skin
  14. <% extends base %>.
  15.  
  16. <% #header %>
  17. Simon's Page
  18.  
  19. <% #content %>
  20. Simon's Content
  21.  
  22. ---------- a rendered base_simon.skin would have this content
  23. <body>
  24.    Simon's Page  
  25.    Simon's Content
  26. </body>