cell_details

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 "cell_details".
... in view_gallery.naml
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<macro name="cell_details">
    <div class="weak-color" style="font-variant: small-caps;">
        <t>by <t.author.owner.name truncate="20"/></t>
    </div>
 
    <div class="weak-color" style="width:100%;font-size:80%;margin:.3em 0;font-variant: small-caps;">
        <n.if.not.is_locked_topic>
            <then>
                <n.if.has_replies>
                    <then.comments_link/>
                    <else>
                        0 <t>comments</t>
                    </else>
                </n.if.has_replies>
            </then>
        </n.if.not.is_locked_topic>
        &ndash;
        <n.views show_text="true"/>
        <n.if.is_in_subapp>
            <then>
                - <t>in <t.location.italic.subapp_link_on_hover/></t>
            </then>
        </n.if.is_in_subapp>
    </div>
</macro>