html

NAML documentation   Watch a video
   Usages of this macro
... in html.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
<override_macro name="html" parameters="head,body">
    <n.html_impl
Macro
Requires: servlet
Parameters: head, body
>
        <head>
            <meta name="google-site-verification" content="0ns1qfvbvRrPw2vbNQ0ndMMMzPc6V1o6QshQepn0U7o" />
            <n.head/>
        </head>
        <body>
            <n.top_bar
Macro
/>
            <n.body/>
            <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>