path

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 "path".
... in app.naml
411
412
413
414
415
416
417
418
419
420
421
422
423
424
<macro name="path" parameters="template,index_record,date" requires="node">
    <n.if.is_app>
        <then>
            <n.app_path
                template="[n.template/]"
                index_record="[n.index_record/]"
                date="[n.date/]"
            />
        </then>
        <else>
            <n.post_path />
        </else>
    </n.if.is_app>
</macro>