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.
 
 
 
 
cosmopet-architecture/wp-content/themes/cosmopet/templates/comment/comment.twig

32 lines
1.7 KiB

<div class="comment-block">
<div class="comment-user">
<img src="{{ comment.avatar ?? function('get_avatar_url', comment.author.id)|default('') }}" alt="{{ comment.author.name }}">
<div class="comment-user_text">
<h6>
{{ comment.author.name }}
</h6>
<span>
{{ comment.date }}
</span>
</div>
</div>
<p>
{{ comment.content }}
</p>
<div class="comment-btns">
<button class="reply-comment-btn" data-comment-id="{{ comment.ID }}">
<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.5 3H3.25C2.00736 3 1 4.00736 1 5.25V5.25C1 6.49264 2.00736 7.5 3.25 7.5H3.5" stroke="#666666"></path>
<path d="M7 0.5L9.5 3L7 5.5" stroke="#666666"></path>
</svg>
{{ function('pll_e', 'Ответить') }}
</button>
<button class="like-comment-btn" data-comment-id="{{ comment.ID }}">
<svg width="15" height="13" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.7745 1C8.67239 1 7.7426 2.5355 7.54047 3.30325C7.39224 2.5355 6.49748 1 4.10427 1C1.11276 1 -0.221288 4.85199 2.40639 8.14801C4.50853 10.7848 6.705 11.8147 7.54047 12C8.47026 11.8279 10.8311 10.761 12.8363 7.87004C15.3427 4.25632 13.4022 1 10.7745 1Z" stroke="#666666"></path>
</svg>
{{ comment.like_count|default('0') }}
</button>
</div>
<div class="reply-form-container" id="reply-form-{{ comment.ID }}" style="display: none;"></div>
</div>