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-timber/views/partials/tease-post.twig

16 lines
387 B

{% extends 'partials/tease.twig' %}
{% block content %}
<h2 class="h2"><a href="{{ post.link }}">{{ post.title }}</a></h2>
<p>
{{
post.excerpt({
words: 5,
read_more: 'Keep reading'
})
}}
</p>
{% if post.thumbnail.src %}
<img src="{{ post.thumbnail.src }}" />
{% endif %}
{% endblock %}