2015-02-05 13:50:44 +01:00
|
|
|
<!--
|
|
|
|
vim: ts=2 noexpandtab
|
|
|
|
-->
|
2015-02-05 22:17:33 +01:00
|
|
|
{% extends "index.html" %}
|
|
|
|
{% block title %}{{ super() }} - Search{% endblock%}
|
|
|
|
{% set active_page = "search" %}
|
|
|
|
{% block content %}
|
2015-02-06 22:03:42 +01:00
|
|
|
<link href="{{ url_for("static", filename="css/search.css") }}" rel="stylesheet">
|
|
|
|
|
|
|
|
<img class="logo" src="{{ url_for("static", filename="images/Pirates.svg") }}" />
|
2015-02-09 00:13:32 +01:00
|
|
|
<form id="tfnewsearch" method="get" action="search">
|
|
|
|
<input type="text" class="tftextinput" name="q" size="21" maxlength="120">
|
|
|
|
<input type="submit" value="{{ getLocalString("english", "search") }}" class="tfbutton">
|
2015-02-06 22:03:42 +01:00
|
|
|
</form>
|
2015-02-05 22:17:33 +01:00
|
|
|
{% endblock content%}
|