add_new_comment_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 "add_new_comment_link".
... in add_new_comment_link.naml
1
2
3
4
5
6
7
8
<override_macro name="add_new_comment_link">
    <div class="shaded-bg-color rounded" style="width:25em;margin:1em 0 2em;padding: .5em">
        <div style="float:left;margin-right:.5em">
            <img src="/images/icon_post_message.png" class="image16" alt="[t]Post message[/t]"/>
        </div>
        <a href="[n.page_node.reply_path/]" rel="nofollow"><t>Add a New Answer</t></a>
    </div>
</override_macro>
Overrides default macro
... in topic.naml
1306
1307
1308
1309
1310
1311
1312
1313
<macro name="add_new_comment_link">
    <div class="shaded-bg-color rounded" style="width:25em;margin:1em 0 2em;padding: .5em">
        <div style="float:left;margin-right:.5em">
            <img src="/images/icon_post_message.png" class="image16" alt="[t]Post message[/t]"/>
        </div>
        <a href="[n.page_node.reply_path/]" rel="nofollow"><t>Add a new comment</t></a>
    </div>
</macro>