html_impl

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "html_impl".
... in responsive.naml
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<override_macro name="html_impl" parameters="head,body" requires="servlet">
    <n.page_start/>
    <n.update_default_permissions/>
    <n.nabble_html>
        <do>
            <n.embedding_redirection_js/>
            <n.put_in_head.head/>
            <n.body/>
            <n.load_call_later_script/>
        </do>
        <output>
            <![CDATA[<!DOCTYPE html>]]>
            <html>
                <head>
                    <meta name="viewport" content="width=device-width,initial-scale=1.0"/>
                    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
                    <n.nabble_stylesheets/>
                    <n.nabble_javascript_libraries/>
                    <n.html_head_content/>
                    <n.nabble_shared_scripts/>
                </head>
                <body>
                    <div id="notice" class="notice rounded-bottom"></div>
                    <div class="nabble macro_[n.page_template/]" id="nabble">
                        <n.apply_filters.html_body_content/>
                    </div>
                    <n.bottom_scripts/>
                    <n.as_html_comments.site_information/>
                </body>
            </html>
        </output>
    </n.nabble_html>
</override_macro>
Overrides default macro
... in utilities.naml
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<macro name="html_impl" parameters="head,body" requires="servlet">
    <n.page_start/>
    <n.update_default_permissions/>
    <n.nabble_html>
        <do>
            <n.embedding_redirection_js/>
            <n.put_in_head.head/>
            <n.body/>
            <n.load_call_later_script/>
        </do>
        <output>
            <![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">]]>
            <html>
                <head>
                    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
                    <n.nabble_stylesheets/>
                    <n.nabble_javascript_libraries/>
                    <n.html_head_content/>
                    <n.nabble_shared_scripts/>
                </head>
                <body>
                    <div id="notice" class="notice rounded-bottom"></div>
                    <div class="nabble macro_[n.page_template/]" id="nabble">
                        <n.apply_filters.html_body_content/>
                    </div>
                    <n.bottom_scripts/>
                    <n.as_html_comments.site_information/>
                </body>
            </html>
        </output>
    </n.nabble_html>
</macro>