Overview of features
Home
Read this first
About
web2py is 100% free
Download
Start learning web2py today
Documentation
Authors and contributors
Staff
Affiliated companies
Support
Edit page
Title:
Security Code:
Body:
(use
this
wiki markup)
Yes. Views can extend and include other views in a tree like structure. The root of the tree is what we call a layout view. It is just an HTML file that you can edit as any other view using the administrative interface. Example of view: {{extend 'layout.html}} <h1>Title</h1> {{include 'footer.html'}} A layout file must be something like <html><head>....</head> <body> {{include}} </body>