class Page

def layout_with_inheritance

def layout_with_inheritance
  if layout_without_inheritance
    layout_without_inheritance
  else
    parent.layout if parent?
  end
end