Code layout change.
[wolnelektury.git] / src / wolnelektury / templates / widget.html
1 {% spaceless %}
2
3 {% load static from staticfiles %}
4 {% load pipeline %}
5
6 <!DOCTYPE html>
7 <html>
8 <head>
9     <meta charset="UTF-8">
10     <base target="_parent" />
11     <title>Widget Wolnych Lektur</title>
12     {% stylesheet 'widget' %}
13 </head>
14 <body>
15 <div id="wl">
16
17 <a href="/">
18     <img src="{% static 'img/logo-neon.png' %}">
19 </a>
20
21 <form action="{% url 'search' %}" method="get" accept-charset="utf-8" id="wl-form">
22     <div id="wl-search">
23         <input data-source="{% url 'search_hint' %}?max=3" id="id_qq" name="q" title="tytuł, autor, motyw/temat, epoka, rodzaj, gatunek, cytat" placeholder="tytuł, autor, motyw/temat, epoka, rodzaj, gatunek, cytat" type="text" value="">
24     </div>
25     <button>
26         <img alt="Szukaj" src="{% static 'img/search.png' %}">
27     </button>
28 </form>
29
30 </div>
31
32 {% javascript 'widget' %}
33
34 </body>
35 </html>
36
37 {% endspaceless %}