Skip to content

Commit 362bca8

Browse files
committed
fix(templates): replace blockquote with div for comment replies
1 parent 7d1a168 commit 362bca8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

templates/comment.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
{% else %}
4141
<div class="comment_body {% if highlighted %}highlighted{% endif %}">{{ body|safe }}</div>
4242
{% endif %}
43-
<blockquote class="replies">{% for c in replies -%}{{ c.render().unwrap()|safe }}{%- endfor %}
44-
</blockquote>
43+
<div class="replies">{% for c in replies -%}{{ c.render().unwrap()|safe }}{%- endfor %}
44+
</div>
4545
</details>
4646
</div>
4747
{% endif %}

0 commit comments

Comments
 (0)