Inheritance =================== Using template inheritance, two or more templates can organize themselves into an **inheritance chain**, where content and functions from all involved templates can be intermixed. The general paradigm of template inheritance is this: if a template `A` inherits from template `B`, then template `A` agrees to send the executional control to template `B` at runtime (`A` is called the **inheriting** template). Template `B`, the **inherited** template, then makes decisions as to what resources from `A` shall be executed. In practice, it looks like this. Heres a hypothetical inheriting template, `index.html`: ## index.html <%inherit file="base.html"/> <%def name="header()"> this is some header content this is the body content. And `base.html`, the inherited template: ## base.html
${self.header()}
${self.body()} <%def name="footer()"> this is the footer Here is a breakdown of the execution: * When `index.html` is rendered, control immediately passes to `base.html`. * `base.html` then renders the top part of an HTML document, then calls the method `header()` off of a built in namespace called `self` (this namespace was first introduced in the Namespaces chapter in [namespaces_builtin_self](rel:namespaces_builtin_self)). Since `index.html` is the topmost template and also defines a def called `header()`, its this `header()` def that gets executed. * Control comes back to `base.html`. Some more HTML is rendered. * `base.html` executes `self.body()`. The `body()` function on all template-based namespaces refers to the main body of the template, therefore the main body of `index.html` is rendered. * Control comes back to `base.html`. More HTML is rendered, then the `self.footer()` expression is invoked. * The `footer` def is only defined in `base.html`, so being the topmost definition of `footer`, its the one that executes. If `index.html` also specified `footer`, then its version would **override** that of the base. * `base.html` finishes up rendering its HTML and the template is complete, producing:
this is some header content
this is the body content. ...and that is template inheritance in a nutshell. The main idea is that the methods that you call upon `self` always correspond to the topmost definition of that method. Very much the way `self` works in a Python class, even though Mako is not actually using Python class inheritance to implement this functionality. (Mako doesn't take the "inheritance" metaphor too seriously; while useful to setup some commonly recognized semantics, a textual template is not very much like an object-oriented class construct in practice). ### Using the "next" namespace to produce content wrapping {@name=next} Sometimes you have an inheritance chain that spans more than two templates. Or maybe you don't, but youd like to build your system such that extra inherited templates can be inserted in the middle of a chain where they would be smoothly integrated. If each template wants to define its layout just within its main body, you can't just call `self.body()` to get at the inheriting template's body, since that is only the topmost body. To get at the body of the *next* template, you call upon the namespace `next`, which is the namespace of the template **immediately following** the current template. Lets change the line in `base.html` which calls upon `self.body()` to instead call upon `next.body()`: ## base.html
${self.header()}
${next.body()} <%def name="footer()"> this is the footer Lets also add an intermediate template called `layout.html`, which inherits from `base.html`: ## layout.html <%inherit file="base.html"/>
${next.body()}
<%def name="toolbar()">
  • selection 1
  • selection 2
  • selection 3
  • And finally change `index.html` to inherit from `layout.html` instead: ## index.html <%inherit file="layout.html"/> ## .. rest of template In this setup, each call to `next.body()` will render the body of the next template in the inheritance chain (which can be written as `base.html -> layout.html -> index.html`). Control is still first passed to the bottommost template `base.html`, and `self` still references the topmost definition of any particular def. The output we get would be:
    this is some header content
    this is the body content.
    So above, we have the ``, `` and `header`/`footer` layout of `base.html`, we have the `