Hi kyrussa,

Try the following:

layout.html:
  Begin main layout
  {{include}}
  End main layout

layout_body.html:
  {{extend "layout.html"}}
  Begin layout body
  {{include}}
  End layout body

mypage.html
{{extend "layout_body.html"}}
This is my content

When you render mypage, you should get:

Begin main layout
Begin layout body
This is my content
End layout body
End main layout


Hope that helps!
Kevin

Reply via email to