Recent Posts
{% set blog = get_section(path="blog/_index.md") %}
{% for page in blog.pages | slice(end=3) %}
{% if page.summary %}
{{ page.summary }}
{% else %}
{{ page.content | striptags | split(pat=" ") | slice(end=20) | join(sep=" ") | safe }}{% if page.word_count > 20 %}…{% endif %}
{% endif %}
{% endfor %}