{% extends "base.html" %} {% block meta_header %} {% endblock %} {% block title %}Blog - {% endblock %} {% block banner %} {% endblock %} {% block content %}

{% for a in articles %} {% if a.headerimage and a.headeralt %}

{{ a.headeralt }}

{% endif %}

{{ a.title }}

Posted by Matt Makai on {{ a.date.strftime('%B %d, %Y') }}. {% if a.modified != a.date %}Last updated {{ a.modified.strftime('%B %d, %Y') }}.{% endif %} {{ a.content|truncate(350) }} (read more) {% if a.headerimage and a.headeralt %}

{% endif %} {% endfor %}

{% endblock %}