show_topic_navigation_links

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 "show_topic_navigation_links".
... in show_topic_navigation_links.naml
1
2
3
4
5
6
7
<override_macro name="show_topic_navigation_links">
    <n.node_page.>
        <n.if.regex_matches text="[n.page_node.get_app_node.id/]" pattern="1624462|3436049|3555032">
            <then.overridden/>
        </n.if.regex_matches>
    </n.node_page.>
</override_macro>
Overrides default macro
... in thread_navigation.naml
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<macro name="show_topic_navigation_links">
    <div style="margin:-1em 0 2em">
        <n.if.page_node.topic_node.has_prev_topic>
            <then>
                <span style="float:left;white-space:nowrap">
                    <sub class="weak-color" style="font-size:180%">&lsaquo;</sub>
                    <a href="[n.page_node.topic_node.prev_topic.url/]"><t>Previous Topic</t></a>
                </span>
            </then>
        </n.if.page_node.topic_node.has_prev_topic>
 
        <n.if.page_node.topic_node.has_next_topic>
            <then>
                <span style="float:right;white-space:nowrap">
                    <a href="[n.page_node.topic_node.next_topic.url/]"><t>Next Topic</t></a>
                    <sub class="weak-color" style="font-size:180%">&rsaquo;</sub>
                </span>
            </then>
        </n.if.page_node.topic_node.has_next_topic>
        <div style="clear:both;height:0">&nbsp;</div>
    </div>
</macro>