{% extends 'base.html' %} {% load static %} {% block title %}{{ post.title }}{% endblock %} {% block meta_description %}{{ post.excerpt }}{% endblock %} {% block content %}
{% if post.image %} {{ post.title }} {% endif %}
{{ post.content|linebreaks }}
← Back to Blog

Recent Posts

{% if recent_posts %}
    {% for recent in recent_posts %}
  • {{ recent.title }}

    {{ recent.published_date|date:"F j, Y" }}

  • {% endfor %}
{% else %}

No recent posts.

{% endif %}
{% endblock %}