blob: 52704e77aba87e61662e91367cb72be7bb6cc85d (
plain) (
tree)
|
|
{% assign post = include.post %}
<article class="post">
{% include post-header.html post = post %}
<section class="post-body">
{% if post.page-image %}
{{ post.page-image | img: "magick:resize:290x" }}
{% endif %}
{{ post.excerpt }}
<p><a href="{{ post.url | prepend: site.baseurl }}">{% t global.read_more %}</a></p>
</section>
</article>
|