news_table

   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 "news_table".
... in view_news.naml
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<macro name="news_table">
    <table id="news-table" class="news-table medium-border-color">
        <n.page_node.topics_list.
            sort="pinned-and-root-node-date"
            start="[n.app_index_record/]"
            length="[n.app_rows_per_page/]"
            filter="[n.app_topic_filter/]"
        >
            <n.handle_empty_newspaper/>
            <n.loop.current_node.>
                <tr>
                    <n.if.has_thumbnail>
                        <then>
                            <td class="news-row thumbnail-cell light-border-color">
                                <n.thumbnail_box/>
                            </td>
                            <td class="news-row light-border-color" style="vertical-align:top">
                                <n.news_text_cell/>
                            </td>
                        </then>
                        <else>
                            <td class="news-row light-border-color" style="vertical-align:top" colspan="2">
                                <n.news_text_cell/>
                            </td>
                        </else>
                    </n.if.has_thumbnail>
                </tr>
            </n.loop.current_node.>
        </n.page_node.topics_list.>
    </table>
</macro>