people_pagination

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 "people_pagination".
... in people.naml
292
293
294
295
296
297
298
299
300
301
302
303
<macro name="people_pagination" parameters="total_rows" requires="node_page">
    <n.paging.
        total_rows="[n.total_rows/]"
        current_row="[n.people_page_index_record/]"
        rows_per_page="[n.people_page_length/]"
    >
        <n.generic_paging>
            <margin>.55em .2em</margin>
            <url><n.page_node.people_path filter="[n.people_filter/]" index_record="[n.page_row/]"/></url>
        </n.generic_paging>
    </n.paging.>
</macro>