subapp_column

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 "subapp_column".
... in columns.naml
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<macro name="subapp_column" parameters="width,title">
    <n.table_column>
        <head>
            <n.if.page_node.has_subapps>
                <then>
                    <td class="[n.column_default_border/] subapp-column nowrap" align="center" style="[n.width_style.width/]">
                        <n.default. to="[t]Sub Forum[/t]"><n.title/></n.default.>
                    </td>
                </then>
            </n.if.page_node.has_subapps>
        </head>
        <body>
            <n.if.page_node.has_subapps>
                <then>
                    <td class="[n.column_default_border/] adbayes-content" style="font-size:90%" align="center"><n.current_node.subapp_link/></td>
                </then>
            </n.if.page_node.has_subapps>
        </body>
    </n.table_column>
</macro>