microblog/app/templates/search_results.html

10 lines
226 B
HTML
Raw Normal View History

2012-12-16 08:35:16 +00:00
<!-- extend base layout -->
{% extends "base.html" %}
{% block content %}
<h1>Search results for "{{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 %}