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>
            <n.head/>
            <!--<span style="display:block;text-align:center"><font size="+1" color="red">Warning:</font><b> Stargazers Lounge Forum </b>no longer has my permission to show any photo or text of this site (english and portuguese version).<br/> By now, I have no longer participation nor cooperation with that forum and I am no longer a member !<br/>More information <a href="http://jsmastronomy.245.s1.nabble.com/Stargazers-Lounge-Forum-What-kind-of-people-the-forum-has-td576.html">Here</a></span><p></p> -->
        </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>