feeds

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 "feeds".
... in feeds.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<macro name="feeds" requires="servlet">
    <n.node_page.>
        <n.html>
            <head>
                <n.title.><t>Atom feeds for <t.location.page_node.subject/></t></n.title.>
            </head>
            <body>
                <h1><t>Atom feeds for <t.location.page_node.subject/></t></h1>
                <div style="margin-top:1.5em">
                    <div class="big-title second-font">
                        <img src="/images/feeds.png" width="16" height="16" align="absmiddle" alt="feeds"/>
                        <t>Topics only</t>
                    </div>
                    <a href="[n.page_node.feeds_topics_path/]"><n.request_base_url/><n.page_node.feeds_topics_path/></a>
                </div>
                <div style="margin-top:1.5em">
                    <div class="big-title second-font">
                        <img src="/images/feeds.png" width="16" height="16" align="absmiddle" alt="feeds"/>
                        <t>Topics and replies</t>
                    </div>
                    <a href="[n.page_node.feeds_posts_path/]"><n.request_base_url/><n.page_node.feeds_posts_path/></a>
                </div>
            </body>
        </n.html>
    </n.node_page.>
</macro>