mixed_table

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 "mixed_table".
... in mixed_table.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<override_macro name="mixed_table" dot_parameter="columns">
    <div style="clear:both"></div>
 
    <n.global_set_var name="mixed_table_column_count" value="[n.calc_table_column_count.columns/]" />
 
    <table class="main main-border-color">
        <n.string_list. values="[n.mixed_topics_per_page/]" >
            <n.no_output.next_string/>
            <n.child_topics_section. length="[n.current_string/]">
                <n.columns/>
            </n.child_topics_section.>
 
            <n.page_node.subapps_list. filter="[n.pinned_filter/]">
                <n.while.has_more_strings n="2">
                    <loop>
                        <n.no_output.next_string/>
                        <n.next_section. length="[n.current_string/]"><n.columns/></n.next_section.>
                    </loop>
                </n.while.has_more_strings>
                <n.if.has_more_strings>
                    <then.no_output.next_string/>
                </n.if.has_more_strings>
                <n.while.next_node>
                    <loop>
                        <n.sub_section. length="[n.current_string/]"><n.columns/></n.sub_section.>
                    </loop>
                </n.while.next_node>
            </n.page_node.subapps_list.>
        </n.string_list.>
    </table>
    <div style="clear:both"></div>
</override_macro>
Overrides default macro
... in view_mixed.naml
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<macro name="mixed_table" dot_parameter="columns">
    <div style="clear:both"></div>
 
    <n.global_set_var name="mixed_table_column_count" value="[n.calc_table_column_count.columns/]" />
 
    <table class="main medium-border-color">
        <n.string_list. values="[n.mixed_topics_per_page/]" >
            <n.no_output.next_string/>
            <n.child_topics_section. length="[n.current_string/]">
                <n.columns/>
            </n.child_topics_section.>
 
            <n.page_node.subapps_list. filter="[n.pinned_filter/]">
                <n.while.has_more_strings n="2">
                    <loop>
                        <n.no_output.next_string/>
                        <n.next_section. length="[n.current_string/]"><n.columns/></n.next_section.>
                    </loop>
                </n.while.has_more_strings>
                <n.if.has_more_strings>
                    <then.no_output.next_string/>
                </n.if.has_more_strings>
                <n.while.next_node>
                    <loop>
                        <n.sub_section. length="[n.current_string/]"><n.columns/></n.sub_section.>
                    </loop>
                </n.while.next_node>
            </n.page_node.subapps_list.>
        </n.string_list.>
    </table>
    <div style="clear:both"></div>
</macro>