{% extends "blog/base.html" %} {% load static %} {% block content %} {% if posts or request.GET.search %}
{% endif %}
{% if posts %} {% for post in posts %}
{% if post.title %}{{post.title}}{% else %}{{ post.date_posted|date:"F j, Y, H:i" }}{% endif %}

{{ post.content }}

{% if post.image %}{% endif %} {% if post.audio %}{% endif %}
{% endfor %} {% if is_paginated %} {% endif %} {% else %} {% if request.GET.search %}

No posts were found

{% else %}

No posts yet

{% endif %} {% endif %}
{% endblock content %}