smart_post_link

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 "smart_post_link".
... in topic.naml
1600
1601
1602
1603
1604
1605
1606
1607
1608
<macro name="smart_post_link" requires="node" dot_parameter="href" parameters="text, title, class">
    <n.if.is_post>
        <then>
            <a href="[n.node_href.href/]" title="[n.title/]" class="[n.hide_null.class/] post-link[n.topic_node.id/]" node-id="[n.id/]"><n.node_text.text/></a>
            <n.call_later value="[n.topic_node.id/]" param="markUnreadTopics"/>
        </then>
        <else.node_link text="[n.text/]"/>
    </n.if.is_post>
</macro>