{% extends "base.html"%} {% load static %} {% block title%} - Search{% endblock title %} {% block content %}

Search

{% if request.GET.q %} Search Results for "{{ request.GET.q }}" {% endif %}

{% for post in posts %}

{{ post.title }}

Date:

{% endfor %}
{% endblock content %}