topic_controls

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 "topic_controls".
... in responsive.naml
170
171
172
173
174
175
176
177
178
179
<override_macro name="topic_controls" requires="forum_topic_namespace">
    <div class="topics-controls-wrapper" style="margin:1.2em 0 5em">
        <div id="topics-controls-left" class="float-left nowrap">
            <n.topic_controls_left/>
        </div>
        <div id="topics-controls-right" class="float-right nowrap" style="padding-top:.3em">
            <n.topic_controls_right/>
        </div>
    </div>
</override_macro>
Overrides default macro
... in topic.naml
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
<macro name="topic_controls" requires="forum_topic_namespace">
    <div style="margin:1.2em 0 5em">
        <div id="topics-controls-left" class="float-left nowrap">
            <n.topic_controls_left/>
        </div>
        <div id="topics-controls-right" class="float-right nowrap" style="padding-top:.3em">
            <n.topic_controls_right/>
        </div>
    </div>
</macro>