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/views/blog/blog-single.twig

89 lines
4.6 KiB

{% extends 'layout.twig' %}
{% block content %}
<!-- Breadcrumb -->
<section class="breadcrumb">
<div class="container">
<a href="{{ site.url }}">{{ function('pll_e', 'Главная') }}</a> /
<a href="{{ fn('get_post_type_archive_link', 'post') }}">{{ function('pll_e', 'Блог') }}</a> /
<a href="{{ post.link }}">{{ post.name }}</a>
</div>
</section>
<!-- Breadcrumb end -->
<!-- Article home -->
<section class="article-home">
<div class="container">
<h1>{{post.name}}</h1>
<div class="article-home__data">
<ul class="article-home__data-alerts">
{% for category in post.categories %}
<li>
<a href="{{ category.link }}">{{ category.name }}</a>
</li>
{% endfor %}
</ul>
<p>{{post.date}}</p>
<p>{{ function('pll_e', 'время чтения') }}: {{post.reading_time}}</p>
{% if post.get_author_name %}
<div class="user">
<a href="{{ post.get_author_link }}">
<img src="{{post.get_author_img}}">
<span>{{post.get_author_name}}</span>
</a>
</div>
{% endif %}
</div>
<div class="article-home__card">
<img src="{{post.thumbnail.src}}" alt="{{post.thumbnail.alt}}">
</div>
</div>
</section>
<!-- Article home end -->
<!-- Article content -->
<div class="article-content">
<div class="article-container">
{{post.content}}
</div>
<!-- Комментарии -->
<section class="comment">
<div class="container">
<div class="comment-btn">
<button {% if function('is_user_liked_post', post.ID) %}class="active"{% endif %} data-post-id="{{ post.ID }}">
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.7859 4.66406C14.7135 4.66406 13.3546 6.89752 13.0591 8.01424C12.8425 6.89752 11.5348 4.66406 8.03702 4.66406C3.66481 4.66406 1.71504 10.267 5.55549 15.0612C8.62786 18.8966 11.8381 20.3945 13.0591 20.6641C14.4181 20.4138 17.8686 18.8619 20.7991 14.6568C24.4623 9.40052 21.6263 4.66406 17.7859 4.66406Z" {% if function('is_user_liked_post', post.ID) %}fill="rgba(255, 0, 0, 0.7)" stroke="#ff0000"{% else %}fill="#121212"{% endif %}></path>
</svg>
Нравится
</button>
<span>
{{ function('get_post_likes_count', post.ID) }}
</span>
</div>
<div class="comment-in">
<h3 class="comment-title">
{{ function('pll_e', 'КОММЕНТАРИИ') }} ({{ function('get_comments_number', post.ID) }})
</h3>
{{ function('comments_template') }}
</div>
</div>
</section>
<!-- Комментарии end -->
</div>
<!-- Article content end -->
<section class="home other-home">
<div class="container">
{% include '/blog/featured-slider.twig' %}
</div>
</section>
{% endblock %}