subapp_link_on_hover

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_link_on_hover".
... in app.naml
533
534
535
536
537
538
539
540
541
542
543
<macro name="subapp_link_on_hover" requires="node,node_list">
    <n.if.is_in_subapp>
        <then>
            <n.link_on_hover
                id ="[n.id/]"
                href ="[n.get_app_node.path/]"
                text ="[n.get_app_node.subject/]"
            />
        </then>
    </n.if.is_in_subapp>
</macro>