16 lines
		
	
	
		
			583 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			583 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!--
 | 
						|
vim: ts=2 noexpandtab
 | 
						|
-->
 | 
						|
{% extends "index.html" %}
 | 
						|
{% block title %}{{ super() }} - Search{% endblock%}
 | 
						|
{% set active_page = "search" %}
 | 
						|
{% block content %}
 | 
						|
<link href="{{ url_for("static", filename="css/search.css") }}" rel="stylesheet">
 | 
						|
 | 
						|
	<img class="logo" src="{{ url_for("static", filename="images/Pirates.svg") }}" />
 | 
						|
	<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">
 | 
						|
	</form>
 | 
						|
{% endblock content%}
 |