show

   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 "show".
... in app.naml
359
360
361
362
363
364
365
366
367
368
<macro name="show" requires="paging_page" parameters="url">
    <n.if.is_current_page>
        <then>
            <span class="current-page medium-border-color"><n.page_number/></span>
        </then>
        <else>
            <n.link url="[n.url/]" />
        </else>
    </n.if.is_current_page>
</macro>