search_result_in_app

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 "search_result_in_app".
... in search_result_in_app.naml
1
2
3
4
5
6
7
<override_macro name="search_result_in_app" requires="node,search">
    <n.if.is_in_app>
        <then>
            <font size="2">na seção: <n.get_app_node.><b><n.node_link text="[n.highlight.subject/]" /></b></n.get_app_node.></font>
        </then>
    </n.if.is_in_app>
</override_macro>
Overrides default macro
... in search.naml
120
121
122
123
124
125
126
<macro name="search_result_in_app" requires="node,search">
    <n.if.is_in_app>
        <then>
            in <n.get_app_node.><n.node_link text="[n.highlight.subject/]" /></n.get_app_node.>
        </then>
    </n.if.is_in_app>
</macro>