searrrrrrrrrrch/templates/base.html

33 lines
907 B
HTML
Raw Normal View History

2018-08-31 10:26:51 +02:00
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8" />
<title>Grrrrrrrrrrls {% block title %}{% endblock %}</title>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/stylesheet.css')}}" />
</head>
<body>
<div id="logo">
<a href="{{ url_for('index')}}"><img src="{{ url_for('static', filename='images/Grrrrrrrrrrls.svg')}}"></a>
</div>
<div id="search">
<form action="" method="GET">
<input id="query" name="q" value="{{query}}"/>
<input id="submit" type="submit" value="➜"/>
</form>
</div>
<input id="frustrated" type="button" value="I'm feeling frustrated">
2018-08-31 10:26:51 +02:00
<div id="txt-list">
<p>Searching through <em>and calculating words of</em> the following txt documents:</p>
<ul>
{% for txt in files %}
<li>{{txt}}</li>
{% endfor %}
<ul>
2018-08-31 13:10:55 +02:00
{% block txtlist %}
{% endblock %}
2018-08-31 10:26:51 +02:00
</div>
{% block results %}
{% endblock %}
</body>
</html>