{% extends 'website/layouts/base.html' %} {% load static %} {% block title %}Blog - Our Latest Insights & Updates{% endblock %} {% block content %} Our Blog Home / Blog {% if request.user.is_staff %} Create New Blog Post {% endif %} {% if query %} Search results for: "{{ query }}" ({{ total_count }} found) Clear Search {% endif %} {% for post in page_obj %} {% if post.featured_image %} {% else %} {% endif %} By {{ post.author.get_full_name|default:post.author.username }} {{ post.created_at|date:"M d, Y" }} {{ post.views_count }} {{ post.title }} {% if post.excerpt %} {{ post.excerpt|truncatewords:20 }} {% else %} {{ post.content|striptags|truncatewords:20 }} {% endif %} Read More {% if request.user.is_staff %} {% endif %} {% empty %} No blog posts found. Check back later or try a different search query! {% if query %} Reset Search {% endif %} {% endfor %} {% if page_obj.has_other_pages %} {% if page_obj.has_previous %} {% endif %} {% for num in page_obj.paginator.page_range %} {% if page_obj.number == num %} {{ num }} {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %} {{ num }} {% endif %} {% endfor %} {% if page_obj.has_next %} {% endif %} {% endif %} {% endblock %}
{{ post.excerpt|truncatewords:20 }}
{{ post.content|striptags|truncatewords:20 }}
Check back later or try a different search query!