{% extends "blog/base.html" %} {% load blog_tags %} {% block title %}Latest Posts - Blog{% endblock %} {% block meta_description %}Browse our latest blog posts on various topics including technology, programming, and more.{% endblock %} {% block content %}

Latest Posts

Discover our latest articles and insights on technology, programming, and more.

{% if posts %}
{% for post in posts %}
{% if post.featured_image %}
{{ post.title }}
{% endif %}

{{ post.title }}

{% if post.excerpt %} {{ post.excerpt }} {% else %} {{ post.content|striptags|truncatewords:30 }} {% endif %}

{{ post.author.get_full_name|default:post.author.username }}
{{ post.publish_date|date:"M 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 search_query %} No posts match your search criteria "{{ search_query }}". {% else %} There are no published posts yet. {% endif %}

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