Login  Register
Customized macros
Search macros
View logs

as_atom_entry

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 "as_atom_entry".
... in feeds.naml
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<macro name="as_atom_entry" requires="node, node_page">
    <n.nop/>
    <entry>
        <id>tag:<n.server_name/>,2006:post-<n.id/></id>
        <title><n.subject/></title>
        <published><n.when_created.as_atom_date_format/></published>
        <updated><n.atom_entry_updated_value/></updated>
        <author>
            <name><n.owner.name/></name>
        </author>
        <content type="html">
            <n.encode.message_with_signature/>
            <n.if.not.this_node.get_app_node.equals.page_node>
                <then.encode.>
                    <p>Posted in <n.get_app_node.node_link/></p>
                </then.encode.>
            </n.if.not.this_node.get_app_node.equals.page_node>
        </content>
        <link rel="alternate" type="text/html" href="[n.url/]" />
        <n.if.parent_node.is_post>
            <then><thr:in-reply-to ref="tag:[n.server_name/],2006:post-[n.parent_node.id/]"/></then>
        </n.if.parent_node.is_post>
    </entry>
</macro>