BrothersInArms main website

app_body_header

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 "app_body_header".
... in app_body_header.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<override_macro name="app_body_header" requires="node_page,servlet">
    <n.page_node.>
        <div id="forum-header">
            <h1 id="forum-title" class="app-title-[n.id/] adbayes-content"><a href="/"><n.subject/></a></h1>
            <div id="description-box" class="adbayes-content">
                <n.mailing_list_information/>
                <n.node_message_as_html/>
            </div>
            <div id="search-box" class="search-box">
                <n.search_box/>
            </div>
        </div>
    </n.page_node.>
</override_macro>
Overrides default macro
... in app.naml
229
230
231
232
233
234
235
236
237
238
239
240
241
<macro name="app_body_header" requires="node_page,servlet">
    <n.page_node.>
        <div id="forum-header">
            <h1 id="forum-title" class="app-title-[n.id/] adbayes-content"><n.subject/></h1>
            <div id="description-box" class="adbayes-content">
                <n.node_message_as_html/>
            </div>
            <div id="search-box" class="search-box">
                <n.search_box/>
            </div>
        </div>
    </n.page_node.>
</macro>