view_board_page

   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_board_page".
... in view_board.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_board_page">
    <n.app_html>
        <head>
            <n.app_title/>
            <n.board_table_stylesheet/>
        </head>
        <body>
            <n.topics_action_link/>
            <n.people_action_link/>
            <n.options_action_menu/>
 
            <n.board_table.>
                <n.subcategories_column title="[n.current_node.node_link class='second-font category-link'/]"/>
                <n.topic_count_column width="5em"/>
                <n.post_count_column width="5em"/>
                <n.last_post_column/>
            </n.board_table.>
 
            <n.forum_footer/>
        </body>
    </n.app_html>
</macro>