You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
401 B
25 lines
401 B
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
|
<h1>test</h1>
|
|
|
|
<form>
|
|
<input type="textfield" name="query">
|
|
<input type="submit">
|
|
</form>
|
|
|
|
<br>
|
|
|
|
{% if query %}
|
|
<div>
|
|
<div>
|
|
<strong>query</strong>: {{ query }}
|
|
</div>
|
|
<br>
|
|
<div>
|
|
The word <em>{{ query }}</em> is used <strong>{{ result }}</strong> many times in <em>1989_RIOT_GRRRL_MANIFESTO_[EN].txt</em>.
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|