Fixes to search engine

Changed the search parameter from POST to GET.
Also, adapted the Baggy theme.
This commit is contained in:
tcit
2014-03-23 23:52:05 +01:00
parent a33a3d2afb
commit 2c4e7a1cea
7 changed files with 100 additions and 23 deletions

View File

@ -12,28 +12,7 @@
{% include '_menu.twig' %}
{% endblock %}
{% block precontent %}
<div id="search-form" class="messages info">
<form method="post" action="index.php?view=search">
<p>
<label>{% trans "Search" %}</label> : <input type="text" placeholder="{% trans "Enter your search here" %}" name="search" />
<input type="submit" value="{% trans "Search" %} !"></input>
</p>
</form>
</div>
<script type="text/javascript">
$(document).ready(function() {
$("#search-form").hide();
$("#search").click(function(){
$("#search-form").toggle();
$("#search").toggleClass("current");
$("#search-arrow").toggleClass("arrow-down");
});
});
</script>
{% include '_sorting.twig' %}
{% endblock %}
{% block content %}