Serotonin Storm

source>templates>blog>post_search.html
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "blog/base_blog.html" %}


{% block title %}Search results for: {{ search_term }} | {{ block.super }}{% endblock %}
{% block body_class %}{{ block.super }} post_search{% endblock %}


{% block content %}
  <h2 class="filter-title">Search results for: {{ search_term }}</h2>

  {% if message %}
  <p class="message">{{ message }}</p>
  {% endif %}
  
  {% if object_list %}
  <div class="post_list">
    {% for post in object_list %}
	{% include "blog/includes/_post_detail.html" %}
    {% endfor %}
  </div>
  {% endif %}
{% endblock %}