9 lines
199 B
HTML
9 lines
199 B
HTML
|
<!-- extend base layout -->
|
||
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>Search results for "{{query}}":</h1>
|
||
|
{% for post in results %}
|
||
|
{% include 'post.html' %}
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|