blob: 8e0a2069020fb533a16cc4855f8847cd1517bf92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "_base.html" %}
{% block title %}
{% if term != "" %}
{{ term }}
{% else %}
Start a new Search
{% endif %}
{% endblock %}
{% block searchValue %}{{ term }}{% endblock %}
{% block content %}
content
{% endblock %}
|