{% extends "blog/base.html" %} {% load blog_tags %} {% block title %}Archive for {{ year }} - Blog{% endblock %} {% block meta_description %}Browse all blog posts published in {{ year }}.{% endblock %} {% block content %}

Archive: {{ year }}

All posts published in {{ year }}

Archive Navigation

All Posts {% get_archive_months 12 as archive_months %} {% for archive_month in archive_months %} {{ archive_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

No posts published in {{ year }}

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