{% extends "blog/base.html" %} {% load blog_tags %} {% block title %}Blog Archive - Blog{% endblock %} {% block meta_description %}Browse our complete blog archive with all posts organized by date.{% endblock %} {% block content %}

{% if year and month %} Archive: {{ month|date:"F Y" }} {% elif year %} Archive: {{ year }} {% else %} Blog Archive {% endif %}

{% if year and month %} All posts published in {{ month|date:"F Y" }} {% elif year %} All posts published in {{ year }} {% else %} Browse our complete collection of blog posts {% endif %}

Archive Navigation

All Posts {% get_archive_months 12 as archive_months %} {% for month in archive_months %} {{ month|date:"M Y" }} {% endfor %}
{% if posts %}
{% for post in posts %}
{% if post.featured_image %}
{{ post.title }}
{% endif %}

{{ post.title }}

{{ post.excerpt|default:post.content|truncatewords:30 }}

{{ post.author.get_full_name|default:post.author.username }}
{{ post.publish_date|date:"F j, Y" }}
{% view_counter post %}
{% if post.tags.all %}
{% for tag in post.tags.all|slice:":3" %} #{{ tag.name }} {% endfor %} {% if post.tags.count > 3 %} +{{ post.tags.count|add:"-3" }} {% endif %}
{% endif %}
{% endfor %}
{% if page_obj.has_other_pages %}
{% endif %} {% else %}

No posts found

{% if year and month %} No posts published in {{ month|date:"F Y" }} {% elif year %} No posts published in {{ year }} {% else %} There are no published posts yet. {% endif %}

{% endif %}
{% blog_sidebar %}
{% endblock %}