classic_row

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 "classic_row".
... in classic_row.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<override_macro name="classic_row" requires="node_list">
    <n.if.has_small_avatar>
        <then.current_node.classic_row_with_small_avatar/>
        <else.current_node.classic_row_with_big_avatar/>
    </n.if.has_small_avatar>
    <n.if.is_last_element>
        <then.current_node.mark_as_visited/>
        <else>
           <div id="topic-footer" class="weak-color" style="padding-bottom:1em">
               <n.page_node.jsm_return_to_topo/>
           </div>
     </else>
    </n.if.is_last_element>
</override_macro>
Overrides default macro
... in topic.naml
342
343
344
345
346
347
348
349
350
<macro name="classic_row" requires="node_list">
    <n.if.has_small_avatar>
        <then.current_node.classic_row_with_small_avatar/>
        <else.current_node.classic_row_with_big_avatar/>
    </n.if.has_small_avatar>
    <n.if.is_last_element>
        <then.current_node.mark_as_visited/>
    </n.if.is_last_element>
</macro>