news_page_layout

   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_page_layout".
... in news.naml
1
2
3
4
<override_macro name="news_page_layout" requires="app_namespace">
    <n.news_table/>
    <n.app_topic_pagination margin=".5em .3em"/>
</override_macro>
Overrides default macro
... in view_news.naml
67
68
69
70
71
72
73
74
75
76
<macro name="news_page_layout" requires="app_namespace">
    <n.column_layout.>
        <n.column. width="70%">
            <n.news_sidebar_widget/>
        </n.column.>
        <n.column. width="30%">
            <n.sidebar_widget/>
       </n.column.>
    </n.column_layout.>
</macro>