forum_footer

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 "forum_footer".
... in forum_footer.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
<override_macro name="forum_footer">
    <n.page_node.>
        <div id="forum-footer" class="forum-footer nowrap">
            <img src="/images/feeds.png" width="16" height="16" align="absmiddle" alt="feeds"/>
            <n.feeds_link/>
            <span class="weak-color" style="padding-left:.5em">|</span>
            <t>&copy; <span id="year">2019</span> <a href="https://www.precisesimulation.com" target="_blank">Precise Simulation Ltd.</a></t>
            <span class="weak-color" style="padding-left:.5em">|</span>
            <n.views show_text="true"/>
        </div>
        <script>window.onload=function(){document.getElementById("year").textContent=new Date().getFullYear();};</script>
    </n.page_node.>
</override_macro>
Overrides default macro
... in utilities.naml
147
148
149
150
151
152
153
154
155
156
157
158
<macro name="forum_footer">
    <n.page_node.>
        <div id="forum-footer" class="forum-footer nowrap">
            <img src="/images/feeds.png" width="16" height="16" align="absmiddle" alt="feeds"/>
            <n.feeds_link/>
            <span class="weak-color" style="padding-left:.5em">|</span>
            <t>Created by <t.author.owner.avatar_and_link/></t>
            <span class="weak-color" style="padding-left:.5em">|</span>
            <n.views show_text="true"/>
        </div>
    </n.page_node.>
</macro>