classic_row_with_member_avatar

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 "classic_row_with_member_avatar".
... in classic_row_with_member_avatar.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<macro name="classic_row_with_member_avatar" requires="node, node_list">
    <div class="classic-row">
        <div class="classic-header">
            <div class="classic-bar medium-border-custom1 border4 rounded shaded-custom1 rounded-top">
                <div class="classic-author-name1 nowrap">
                    <n.owner.user_link/>
                </div>
                <div class="classic-right-menu shaded-custom weak-color">
                    <n.reply_link/> |
                    <n.threaded_link/> |
                    <n.post_dropdown/>
                    &nbsp;
                    <!--n.report_flag/-->
                </div>
                <div class="classic-subject-line">
                    <n.red_arrow_icon/>
                    <n.classic_post_date/>
                    <n.classic_subject_line/>
                </div>
            </div>
        </div>
        <table class="classic-body">
            <tr>
                <td class="classic-author medium-border-custom1 rounded-bottom shaded-custom1 rounded-bottom">
                    <n.classic_big_avatar_cell/>
                </td>
                <td class="classic-message">
                    <n.classic_message_cell/>
                </td>
            </tr>
        </table>
    </div>
</macro>