view_subapps

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_subapps".
... in view_subapps.naml
1
2
3
<override_macro name="view_subapps">
        <n.call_view_mixed/>
</override_macro>
Overrides default macro
... in subapps.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<macro name="view_subapps">
    <n.app_min_html>
        <head>
            <n.subapps_title/>
        </head>
        <body>
            <h2><t>Subcategories under <t.location.page_node.subject/></t></h2>
 
            <n.subapps_table.>
                <n.subcategories_column/>
                <n.topic_count_column width="5em"/>
                <n.post_count_column width="5em"/>
                <n.last_post_column/>
            </n.subapps_table.>
        </body>
    </n.app_min_html>
</macro>