Files
cnt-sindikatua/views/templates/single.twig

56 lines
2.1 KiB
Twig
Raw Normal View History

2025-07-14 07:33:32 +00:00
{% extends 'layouts/base.twig' %}
{% block content %}
2025-08-13 08:59:26 +00:00
{# <h1>SINGLE ARTÍCULOS</h1> #}
2025-08-07 12:04:48 +00:00
<div class="container">
2025-07-14 07:33:32 +00:00
<article class="post-type-{{ post.type }}" id="post-{{ post.id }}">
2025-08-13 08:59:26 +00:00
<!-- <img src="{{ post.thumbnail.src }}" /> -->
2025-10-23 08:41:23 +00:00
<p class="my-5 position-relative fs-5 fw-bold sp-module-title">
{% if post.category %}
{{ post.category }}
{% else %}
{{ post.post_type == 'opinion' ? 'Opinión' : 'Sin categoría' }}
{% endif %}
</p>
2025-08-07 12:04:48 +00:00
<section class="article-content mt-5 border-dark border-top">
2025-07-14 07:33:32 +00:00
<h1 class="article-h1">{{ post.title }}</h1>
2025-10-23 08:41:23 +00:00
<p class="blog-author mt-4 mb-3 border-dark border-bottom">
2025-08-21 07:21:36 +00:00
<span>{{ __('Autor', 'Sindikatua')}}:</span>
2025-07-14 07:33:32 +00:00
<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>
2025-08-07 12:04:48 +00:00
2025-07-14 07:33:32 +00:00
<div class="article-body">{{ post.content }}</div>
</section>
2025-08-07 12:04:48 +00:00
<!-- comments -->
2025-10-27 11:25:39 +00:00
{# <p class="mt-5 border-dark border-top fst-italic">{{ __('No se puede comentar', 'Sindikatua') }}</p> #}
2025-10-22 10:03:03 +00:00
{# <section class="comment-box mt-5 p-2 border-dark border-top">
2025-07-14 07:33:32 +00:00
<div class="comments">
{% if post.comments %}
2025-08-07 12:04:48 +00:00
<!-- <h2>Comentarios</h2> -->
2025-07-14 07:33:32 +00:00
{% for cmt in post.comments %}
{% include 'partials/comment.twig' with {
comment: cmt
} %}
{% endfor %}
{% endif %}
</div>
{% if post.comment_status == 'closed' %}
2025-08-21 07:21:36 +00:00
<p>{{ __('No se puede comentar', 'Sindikatua') }}</p>
2025-07-14 07:33:32 +00:00
{% else %}
{% include 'partials/comment-form.twig' %}
{% endif %}
2025-10-22 10:03:03 +00:00
</section> #}
2025-10-23 08:41:23 +00:00
2025-07-14 07:33:32 +00:00
</article>
</div>
{% endblock %}