summaryrefslogtreecommitdiffstats
path: root/blog/_includes/post-excerpt.html
blob: 52704e77aba87e61662e91367cb72be7bb6cc85d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{% 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>