<!--
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">

<div class="search_container">
	<img class="logo" src="{{ url_for("static", filename="images/Pirates.svg") }}" />
	<form action="search" >
		<div class="form-group">
			<div class="input-group search-box">
				<input type="text" name="q" class="form-control" placeholder="{{ _("Seach for…") }}" aria-describedby="basic-addon2">
				<span class="input-group-btn">
					<button class="btn btn-default" type="submit">
						<span class="glyphicon glyphicon-search" aria-hidden="true"></span>
						{{ _("Search!") }}
					</button>
				</span>
			</div>
		</div>
	</form>
</div>
{% endblock content%}