authenticated_self_profile_header

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 "authenticated_self_profile_header".
... in user_profile.naml
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<macro name="authenticated_self_profile_header" requires="user">
    <!-- Show basic profile links -->
    <n.if.not.equal value1="[n.get_parameter name='macro'/]" value2="user_profile">
        <then>
            <div style="margin-top:.5em">
                <img src="/images/tool.png" align="absmiddle" width="16" height="17" style="margin:0 1px"/>
                <a href="[n.user_profile_path/]"><t>Account Settings</t></a>
            </div>
        </then>
    </n.if.not.equal>
 
    <div style="margin-top:.5em">
        <img src="/images/forum_sm.png" class="image16" style="margin:0 1px"/>
        <a href="[n.nabble_global_apps_url/]" target="_top"><t>My Nabble Applications</t></a>
    </div>
</macro>