is_in_subapp

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 "is_in_subapp".
... in app.naml
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
<macro name="is_in_subapp" requires="node,node_list">
    <n.both>
        <condition1>
            <n.is_post/>
        </condition1>
        <condition2>
            <n.both>
                <condition1>
                    <n.has_loop_node/>
                </condition1>
                <condition2>
                    <n.get_app_node.not.equals.loop_node/>
                </condition2>
            </n.both>
        </condition2>
    </n.both>
</macro>