{% extends "base.html" %} {% load static %} {% block title %}Blog · {{ SITE_NAME }}{% endblock %} {% block og_title %}Blog · {{ SITE_NAME }}{% endblock %} {% block twitter_title %}Blog · {{ SITE_NAME }}{% endblock %} {% block meta_description %}News and painting tips from {{ SITE_NAME }}.{% endblock %} {% block content %} {% include "public/_breadcrumbs.html" with title="Blog" subtitle="Our latest news and updates" %}
{% for post in posts %}
{{ post.title }}

{{ post.excerpt|default:post.body|truncatewords:40 }}

{% if post.published_at %}
{{ post.published_at|date:"F j, Y" }}
{% endif %}
{% empty %}

No posts yet. Check back soon for painting tips and project news.

{% endfor %}
{% endblock %}