Files
cnt-sindikatua/views/templates/single.twig
2025-08-21 07:21:36 +00:00

46 lines
1.7 KiB
Twig

{% extends 'layouts/base.twig' %}
{% block content %}
{# <h1>SINGLE ARTÍCULOS</h1> #}
<div class="container">
<article class="post-type-{{ post.type }}" id="post-{{ post.id }}">
<!-- <img src="{{ post.thumbnail.src }}" /> -->
<section class="article-content mt-5 border-dark border-top">
<h1 class="article-h1">{{ post.title }}</h1>
<p class="blog-author mt-3 mb-5 border-dark border-bottom">
<span>{{ __('Autor', 'Sindikatua')}}:</span>
<a href="{{ post.author.path }}">{{ post.author.name }}</a>
<span>&bull;</span>
<time datetime="{{ post.date|date('Y-m-d H:i:s') }}">{{ post.date }}</time>
</p>
<div class="article-body">{{ post.content }}</div>
</section>
<!-- comments -->
<section class="comment-box mt-5 p-2 border-dark border-top">
<div class="comments">
{% if post.comments %}
<!-- <h2>Comentarios</h2> -->
{% for cmt in post.comments %}
{% include 'partials/comment.twig' with {
comment: cmt
} %}
{% endfor %}
{% endif %}
</div>
{% if post.comment_status == 'closed' %}
<p>{{ __('No se puede comentar', 'Sindikatua') }}</p>
{% else %}
{% include 'partials/comment-form.twig' %}
{% endif %}
</section>
</article>
</div>
{% endblock %}