throw away this stupid bootstrap shit and build it with plain HTML

This commit is contained in:
sqozz
2015-02-09 00:13:32 +01:00
parent 71858c6020
commit 90bd3ea1f2
19 changed files with 534 additions and 227 deletions

View File

@ -7,20 +7,9 @@ vim: ts=2 noexpandtab
{% 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 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>
</div>
{% endblock content%}