forked from cc-d/ieddit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollapsed.html
32 lines (26 loc) · 1.39 KB
/
collapsed.html
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
<li id="hide-comment-{{ comment.id }}" class="hidden-comment media sub-comment media-body rounded" level="{{ loop.depth - 1 }}" style="margin-left:{{ loop.depth - 1 }}rem; overflow: hidden; height: 2 rem; display: none; height: 2rem; min-height: 2rem;" loop='{{ loop.index0 }} {{ loop.depth0 }}'>
<div class="media-body comment-media-body">
<div class="row post-row">
<div class="col inner-div">
<small>
{% if comment.edited %}* {% endif %}
{% if cauthor_type == 'admin' %}
<i style="color: red;" class="fa fa-user"></i><a style="color: red;" class="user-icon-link" href="{{ config.URL }}/u/{{ cauthor }}">[a]{{ cauthor }}</a>
{% elif cauthor_type == 'mod' %}
<i style="color: lightblue;" class="fa fa-user"></i><a style="color: lightblue;" class="user-icon-link" href="{{ config.URL }}/u/{{ cauthor }}">[m]{{ pauthor }}</a>
{% else %}
<i class="fa fa-user"></i><a class="user-icon-link" href="{{ config.URL }}/u/{{ cauthor }}">{{ cauthor }}</a>
{% endif %}
</small>
<a href="{{ comment.permalink }}">
<small class="created-ago comment-link">32m</small>
</a>
<small class="created-ago">
<a class="comment-link" href="{{ comment.permalink }}">
parent</a>
</small><small class="created-ago">
<a class="hide-comment" href="javascript:minShow({{ comment.id }})">[+]</a></small>
</div>
</div>
</div>
</li>