{% extends "base.html" %} {% block links %} {% endblock %} {% block content %}

Dustin C. Hatch

Recent Posts

{% set blog = get_section(path="blog/_index.md") %} {% for page in blog.pages | slice(end=3) %}

{{ page.title }}

{% 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 %}
{% endblock %}