{% extends 'website/base.html' %} {% load static %} {% block title %}{{ settings.blog_title|default:"Blog" }} | {{ settings.site_name }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ settings.blog_title|default:"Our Blog" }}

{% if settings.blog_description %}

{{ settings.blog_description }}

{% else %}

Explore fresh perspectives on wellness, growth, and mindful living.

{% endif %} {% if categories %}
All topics {% for cat in categories %} {{ cat.name }} {% endfor %}
{% endif %}
{% if featured_posts and not active_category %} {% endif %}
{% if posts %} {% if posts.has_other_pages %}
{% if posts.has_previous %} ‹ Prev {% else %} ‹ Prev {% endif %} {% for num in posts.paginator.page_range %} {% if posts.number == num %} {{ num }} {% elif num > posts.number|add:'-3' and num < posts.number|add:'3' %} {{ num }} {% endif %} {% endfor %} {% if posts.has_next %} Next › {% else %} Next › {% endif %}
{% endif %} {% else %}

No posts published yet. Stay tuned — inspiring content is on its way!

{% endif %}
{% endblock %}