news_title_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 "news_title_row".
... in news_title_row.naml
1
2
3
4
5
6
7
8
9
10
11
12
<override_macro name="news_title_row" requires="node">
    <div class="news-title">
        <h2 class="news-title adbayes-content">
            <n.jsm_gallery_node_link/>
        </h2>
        <n.if.is_in_subapp>
            <then>
                <t>in <t.location.italic.subapp_link_on_hover/></t>
            </then>
        </n.if.is_in_subapp>
    </div>
</override_macro>
Overrides default macro
... in view_news.naml
155
156
157
158
159
160
161
162
163
164
165
166
<macro name="news_title_row" requires="node">
    <div class="news-title">
        <h2 class="news-title adbayes-content">
            <n.node_link/>
        </h2>
        <n.if.is_in_subapp>
            <then>
                <t>in <t.location.italic.subapp_link_on_hover/></t>
            </then>
        </n.if.is_in_subapp>
    </div>
</macro>