Browse Source

[mod] html mods

asciimoo 11 years ago
parent
commit
db7af79ac8
2 changed files with 3 additions and 5 deletions
  1. 1
    3
      searx/templates/base.html
  2. 2
    2
      searx/templates/search.html

+ 1
- 3
searx/templates/base.html View File

@@ -1,12 +1,10 @@
1 1
 <!DOCTYPE html>
2 2
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
3 3
 <head>
4
-    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
5
-    <meta http-equiv="content-language" content="en" />
6 4
     <meta name="description" content="Searx - a privacy-respecting, hackable metasearch engine" />
7 5
     <meta name="keywords" content="searx, search, search engine, metasearch, meta search" />
8 6
     <title>{% block title %}{% endblock %}searx</title>
9
-    <link rel="stylesheet" href="/static/css/style.css" type="text/css" media="screen" charset="utf-8" />
7
+    <link rel="stylesheet" href="/static/css/style.css" type="text/css" media="screen" />
10 8
     <link rel="shortcut icon" href="{{ url_for('static', filename='img/favicon.png') }}" />
11 9
     {% block styles %}
12 10
     {% endblock %}

+ 2
- 2
searx/templates/search.html View File

@@ -3,11 +3,11 @@
3 3
     <input type="text" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
4 4
     <input type="submit" value="" id="search_submit" />
5 5
 </div>
6
-    <p>
6
+    <div>
7 7
     {% for category in categories %}
8 8
         <div class="checkbox_container">
9 9
             <input type="checkbox" id="checkbox_{{ category }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category }}" class="cb"></label><label for="checkbox_{{ category }}">{{ category }}</label>
10 10
         </div>
11 11
     {% endfor %}
12
-    </p>
12
+    </div>
13 13
 </form>