2012-12-16 08:35:16 +00:00
|
|
|
<!-- extend base layout -->
|
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2013-02-01 05:48:20 +00:00
|
|
|
<h1>{{ _('Search results for "%(query)s":', query = query) }}</h1>
|
2012-12-16 08:40:47 +00:00
|
|
|
{% include 'flash.html' %}
|
2012-12-16 08:35:16 +00:00
|
|
|
{% for post in results %}
|
|
|
|
{% include 'post.html' %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|