view_category_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_category_page".
... in view_category_page.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<override_macro name="view_category_page">
    <n.app_html>
        <head>
            <n.app_title/>
            <n.category_table_stylesheet/>
        </head>
        <body>
            <n.topics_action_link/>
            <n.people_action_link/>
            <n.options_action_menu/>
 
            <n.category_table.>
                <n.subcategories_column/>
                <n.topic_count_column width="5em"/>
                
                <n.last_post_column/>
            </n.category_table.>
 
            <n.forum_footer/>
        </body>
    </n.app_html>
</override_macro>
Overrides default macro
... in view_category.naml
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<macro name="view_category_page">
    <n.app_html>
        <head>
            <n.app_title/>
            <n.category_table_stylesheet/>
        </head>
        <body>
            <n.topics_action_link/>
            <n.people_action_link/>
            <n.options_action_menu/>
 
            <n.category_table.>
                <n.subcategories_column/>
                <n.topic_count_column width="5em"/>
                <n.post_count_column width="5em"/>
                <n.last_post_column/>
            </n.category_table.>
 
            <n.forum_footer/>
        </body>
    </n.app_html>
</macro>
Feedback, Links, Privacy, Rules, Support, About