view_standard_page

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 "view_standard_page".
... in view_standard_page.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<override_macro name="view_standard_page">
    <n.set_app_rows_per_page rows_per_page="[n.forum_topics_per_page/]"/>
    <n.app_html>
        <head>
            <n.app_title />
            <n.standard_table_stylesheet/>
        </head>
        <body>
            <n.new_topic_action_link/>
            <n.topics_action_link only_if_has_subapps="true"/>
            <n.people_action_link/>
            <n.options_action_menu/>
 
            <n.app_child_pagination margin=".8em .3em .5em 0"/>
            <n.standard_table.standard_table_columns />
            <n.app_child_pagination margin=".8em .3em .5em 0"/>
            <n.forum_footer/>
            
<script type="text/javascript">
var sc_project=11910724; 
var sc_invisible=1; 
var sc_security="aa58c7bb"; 
</script>
<script type="text/javascript"
src="https://www.statcounter.com/counter/counter.js" ></script>
            
        </body>
    </n.app_html>
</override_macro>
Overrides default macro
... in view_standard.naml
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<macro name="view_standard_page">
    <n.set_app_rows_per_page rows_per_page="[n.forum_topics_per_page/]"/>
    <n.app_html>
        <head>
            <n.app_title />
            <n.standard_table_stylesheet/>
        </head>
        <body>
            <n.new_topic_action_link/>
            <n.topics_action_link only_if_has_subapps="true"/>
            <n.people_action_link/>
            <n.options_action_menu/>
 
            <n.app_child_pagination margin=".8em .3em .5em 0"/>
            <n.standard_table.standard_table_columns />
            <n.app_child_pagination margin=".8em .3em .5em 0"/>
            <n.forum_footer/>
        </body>
    </n.app_html>
</macro>