topic_meta

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 "topic_meta".
... in topic.naml
183
184
185
186
187
188
189
190
191
192
193
194
195
<macro name="topic_meta" requires="node_page,servlet">
    <n.if.equal value1="[n.topic_view/]" value2="[n.classic_view/]">
        <then>
            <n.topic_meta_description/>
            <n.topic_meta_keywords/>
        </then>
        <else>
            <n.set_var. name='canonical_url'><n.page_node.topic_path view="[n.classic_view/]"/></n.set_var.>
            <link rel="canonical" href="[n.var name='canonical_url'/]" />
            <META NAME="robots" CONTENT="noindex,follow"/>
        </else>
    </n.if.equal>
</macro>