list_child_topics

   Usages of this macro
... in app_page.naml
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<macro name="list_child_topics" parameters="section_title" requires="node">
  <n.children_list
Macro
Requires: node
Parameters: filter, start, length, sort, do
. start="0" length="100" sort="pinned-and-root-node-date" filter="[n.post_filter
Binary
Namespace: NodeNamespace
/]">
    <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.not
Binary
Namespace: BasicNamespace
Parameters: condition
.list_is_empty
Binary
Namespace: ListSequence
>
      <then>
        <h2><n.section_title/></h2>
        <div style="margin:0 0 1.5em 2em;">
          <n.loop
Macro
Requires: sequence
Parameters: by, do
.>
            <div style="padding:.3em 0">
              <n.current_node
Binary
Namespace: NodeList
Parameters: do
.node_link
Macro
Requires: node
Parameters: text, href, title, class, target
/>
            </div>
          </n.loop.>
        </div>
      </then>
    </n.if.not.list_is_empty>
  </n.children_list.>
</macro>