comparison src/nabble/modules/naml/pedxing.naml @ 0:7ecd1a4ef557

add content
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 21 Mar 2019 19:15:52 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:7ecd1a4ef557
1 <!-- http://forums.landertalk.com/ -->
2
3 <macro name="atom_topics_by_popularity" requires="servlet" unindent="true">
4 <n.node_page.>
5 <n.page_node.as_atom_feeds.>
6 <n.page_node.topics_list.
7 start="0"
8 length="10"
9 sort="popularity"
10 filter="[n.atom_topics_by_popularity_filter/]"
11 >
12 <n.loop.current_node.as_atom_entry/>
13 </n.page_node.topics_list.>
14 </n.page_node.as_atom_feeds.>
15 </n.node_page.>
16 </macro>
17
18 <macro name="atom_topics_by_popularity_filter">
19 <n.page_node.date_range_filter from_date="[n.get_parameter name='from_date'/]" to_date="[n.get_parameter name='to_date'/]"/>
20 </macro>