html

   Usages of this macro
... in shared_design.naml
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<override_macro name="html" parameters="head,body">
  <n.html_impl
Macro
Requires: servlet
Parameters: head, body
>
    <head>
      <n.head/>
    </head>
    <body>
      <n.node_parameter_or_root
Macro
Parameters: do
.page_header
Macro
Requires: node
/>
      <div style="padding:0 1em">
        <n.body/>
      </div>
      <n.nabble_footer
Macro
/>
    </body>
  </n.html_impl>
</override_macro>
Overrides default macro
... in utilities.naml
3
4
5
6
7
8
9
10
11
12
13
14
<macro name="html" parameters="head,body">
    <n.html_impl>
        <head>
            <n.head/>
        </head>
        <body>
            <n.top_bar/>
            <n.body/>
            <n.nabble_footer/>
        </body>
    </n.html_impl>
</macro>