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">
|
|
|
|
|
2015-02-12 22:06:31 +01:00
|
|
|
<div class="search_container">
|
2015-02-06 22:03:42 +01:00
|
|
|
<img class="logo" src="{{ url_for("static", filename="images/Pirates.svg") }}" />
|
2015-02-12 22:06:31 +01:00
|
|
|
<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>
|
2015-02-06 22:03:42 +01:00
|
|
|
</form>
|
2015-02-12 22:06:31 +01:00
|
|
|
</div>
|
2015-02-05 22:17:33 +01:00
|
|
|
{% endblock content%}
|