sub_section

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 "sub_section".
... in view_mixed.naml
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<macro name="sub_section" dot_parameter="columns" parameters="length">
    <n.if.current_node.can_be_viewed_by_visitor>
        <then>
            <n.if.current_node.type equals="gallery">
                <then.current_node.gallery_section length="[n.length/]"/>
                <else>
                    <n.current_node.subapp_section. length="[n.length/]">
                        <n.columns/>
                    </n.current_node.subapp_section.>
                </else>
            </n.if.current_node.type>
        </then>
    </n.if.current_node.can_be_viewed_by_visitor>
</macro>