summaryrefslogtreecommitdiff
path: root/examples/bench/mako_inheritance/base.html
blob: 618dde76c4c60b7d06a5cac32449772409510347 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
  <head>
    <title>${title}</title>
  </head>
  <body>

<%component name="greeting(name)">
      <p>hello ${name}!</p>
</%component>
      
 <%include file="header.html"/>

 ${self.body()}

    <%include file="footer.html"/>
  </body>
</html>