2025-07-14 07:33:32 +00:00
|
|
|
{% extends 'partials/tease.twig' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h2 class="h2"><a href="{{ post.link }}">{{ post.title }}</a></h2>
|
|
|
|
<p>
|
|
|
|
{{
|
|
|
|
post.excerpt({
|
|
|
|
words: 5,
|
2025-08-13 08:58:35 +00:00
|
|
|
read_more: 'Sigue leyendo'
|
2025-07-14 07:33:32 +00:00
|
|
|
})
|
|
|
|
}}
|
|
|
|
</p>
|
|
|
|
{% if post.thumbnail.src %}
|
|
|
|
<img src="{{ post.thumbnail.src }}" />
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|