blog_post_footer

NAML documentation   Watch a video
Error Found
An error was found in the NAML code of this application – View Details | Go to NAML Editor
no macro found to override
  in (custom_tweak:menu_post_by_email:1) - <override_macro name="menu_post_by_email" requires="node">
   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 "blog_post_footer".
... in view_blog.naml
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<macro name="blog_post_footer" requires="node">
    <div class="blog-footer">
        <n.if.not.is_locked_topic>
            <then>
                <n.permalink/>
                &nbsp;
                <img src="/images/icon_message.png" align="absmiddle" height="14" width="15"/>
                <n.if.has_replies>
                    <then.comments_link/>
                    <else>
                        <a href="[n.new_post_path/]" rel="nofollow"><t>Leave a comment</t></a>
                    </else>
                </n.if.has_replies>
            </then>
        </n.if.not.is_locked_topic>
    </div>
</macro>