people_title

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 "people_title".
... in people_title.naml
1
2
3
4
5
6
7
8
<override_macro name="people_title">
    <n.title.>
        <t>People in <t.location.page_node.subject/></t>
        <n.if.not.is_null.people_filter>
            <then>(<n.online_users_filter/>)</then>
        </n.if.not.is_null.people_filter>
    </n.title.>
</override_macro>
Overrides default macro
... in people.naml
35
36
37
38
39
40
41
42
<macro name="people_title">
    <n.title.>
        <t>People in <t.location.page_node.subject/></t>
        <n.if.not.is_null.people_filter>
            <then>(<n.people_filter/>)</then>
        </n.if.not.is_null.people_filter>
    </n.title.>
</macro>