forked from Ponysearch/Ponysearch
10 lines
263 B
HTML
10 lines
263 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<form method="post" action="">
|
|
<input type="text" name="q" value="{{ q }}"/>
|
|
<input type="submit" value="search" />
|
|
</form>
|
|
{% for result in results %}
|
|
<p>{{ result|safe }}</p>
|
|
{% endfor %}
|
|
{% endblock %}
|