You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
847 B
23 lines
847 B
{% if not post.password_required %}
|
|
{% if not is_user_logged_in %}
|
|
<div class="comment-block">
|
|
<p class="comment-block_text">
|
|
<button class="login-open">{{ fn('pll_e', 'Войдите') }}</button>, {{ fn('pll_e', 'чтобы оставлять комментарии') }}
|
|
</p>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if top_level_comments %}
|
|
<div class="comment-block_wrapper">
|
|
{% for comment in top_level_comments %}
|
|
{% include 'blog/comments/comment-single.twig' with { comment: comment, depth: 1 } %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if is_user_logged_in %}
|
|
<div class="comment-form-container">
|
|
{{ fn('comment_form', comment_form_args) }}
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
|