2021-02-10 19:48:51 +01:00
|
|
|
{% import "utils.html" as utils %}
|
|
|
|
|
2021-02-12 18:16:59 +01:00
|
|
|
{% if kind == "more" && parent_kind == "t1" %}
|
|
|
|
<a class="deeper_replies" href="{{ post_link }}{{ parent_id }}">→ More replies</a>
|
2021-02-10 19:48:51 +01:00
|
|
|
{% else if kind == "t1" %}
|
|
|
|
<div id="{{ id }}" class="comment">
|
|
|
|
<div class="comment_left">
|
2021-03-20 23:42:47 +01:00
|
|
|
<p class="comment_score" title="{{ score.1 }}">{{ score.0 }}</p>
|
2021-02-10 19:48:51 +01:00
|
|
|
<div class="line"></div>
|
|
|
|
</div>
|
2021-11-19 06:42:53 +01:00
|
|
|
<details class="comment_right" {% if collapsed == false %}open{% endif %}>
|
2021-02-10 19:48:51 +01:00
|
|
|
<summary class="comment_data">
|
2021-03-18 01:28:05 +01:00
|
|
|
<a class="comment_author {{ author.distinguished }} {% if author.name == post_author %}op{% endif %}" href="/user/{{ author.name }}">u/{{ author.name }}</a>
|
2021-02-10 19:48:51 +01:00
|
|
|
{% if author.flair.flair_parts.len() > 0 %}
|
|
|
|
<small class="author_flair">{% call utils::render_flair(author.flair.flair_parts) %}</small>
|
|
|
|
{% endif %}
|
2021-02-26 06:53:27 +01:00
|
|
|
<a href="{{ post_link }}{{ id }}/?context=3" class="created" title="{{ created }}">{{ rel_time }}</a>
|
2021-02-14 23:53:09 +01:00
|
|
|
{% if edited.0 != "".to_string() %}<span class="edited" title="{{ edited.1 }}">edited {{ edited.0 }}</span>{% endif %}
|
2021-02-10 19:48:51 +01:00
|
|
|
</summary>
|
2021-02-12 18:16:59 +01:00
|
|
|
<div class="comment_body {% if highlighted %}highlighted{% endif %}">{{ body }}</div>
|
2021-02-10 19:48:51 +01:00
|
|
|
<blockquote class="replies">{% for c in replies -%}{{ c.render().unwrap() }}{%- endfor %}
|
|
|
|
</blockquote>
|
|
|
|
</details>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|