blog_post_footer

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 "blog_post_footer".
... in blog_post_footer.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<override_macro name="blog_post_footer" requires="node">
    <div class="blog-footer">
        <n.page_node.jsm_return_to_topo/>&nbsp;
        <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>
</override_macro>
Overrides default macro
... 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>