{% extends "base.html" %} {% block init %} {% set page_class = "index" %} {% endblock%} {% block links %} {% endblock %} {% block header %}{% 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 %} {% block after_content %}
{% endblock %}