X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/cf21ebb1502a1f5b7dfc285b9f9e3af4ede3e993..e9673d40117e6785680fb7f1d3ce9363bcd2f078:/apps/wolnelektury_core/templates/superbase.html diff --git a/apps/wolnelektury_core/templates/superbase.html b/apps/wolnelektury_core/templates/superbase.html index f67d9f384..423befbdb 100644 --- a/apps/wolnelektury_core/templates/superbase.html +++ b/apps/wolnelektury_core/templates/superbase.html @@ -1,6 +1,7 @@ <!DOCTYPE html> <html prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#"> {% load cache compressed i18n %} + {% load static from staticfiles %} {% load catalogue_tags reporting_stats sponsor_tags %} <head> <meta charset="utf-8"> @@ -16,10 +17,13 @@ <title>{% block title %}{% trans "Wolne Lektury" %} :: {% block titleextra %}{% endblock %}{% endblock %}</title> - <link rel="icon" href="{{ STATIC_URL }}img/favicon.png" type="image/png" /> - <link rel="search" type="application/opensearchdescription+xml" title="Wolne Lektury" href="{{ STATIC_URL }}opensearch.xml" /> + <link rel="icon" href="{% static "img/favicon.png" %}" type="image/png" /> + <link rel="search" type="application/opensearchdescription+xml" title="Wolne Lektury" + href="{% static "opensearch.xml" %}" /> {% compressed_css "all" %} - {% compressed_css "screen" %} + <link href="{% static "css/core.css" %}" rel="stylesheet" type="text/css" media="screen" /> + <link href="{% static "css/antiscreen.css" %}" rel="stylesheet" type="text/css" media="screen and (max-width: 480px)" /> + {#% compressed_css "handheld" %#} <!--[if IE]> {% compressed_css "ie" %} <![endif]--> @@ -38,7 +42,7 @@ <div id="header-content"> <div id="logo"> <a class="logo" href="/"> - Wolne Lektury</a> + <img id="logo-image" src="{% static "img/logo-neon.png" %}" /></a> </div> <div id="tagline"> @@ -119,7 +123,7 @@ <div id="main-content"> <div id="nav-line"> - {% cache 60 catalogue-menu LANGUAGE_CODE %} + {% cache 300 catalogue-menu LANGUAGE_CODE %} {% catalogue_menu %} {% endcache %} @@ -171,6 +175,7 @@ e-mail: <a href="mailto:fundacja@nowoczesnapolska.org.pl">fundacja@nowoczesnapolska.org.pl</a> {% endblocktrans %} </p> + <p>Nowa strona biblioteki Wolne Lektury powstaÅa dziÄki Årodkom otrzymanym w ramach Programu Operacyjnego Fundusz Inicjatyw Obywatelskich, Senatu RP (zadanie realizowane w ramach zlecania przez KancelariÄ Senatu zadaÅ w zakresie opieki nad PoloniÄ i Polakami za granicÄ w 2011 r.) oraz Narodowego Instytutu Audiowizualnego w ramach programu Dziedzictwo Cyfrowe.</p> {% block add_footer %}{% endblock %} @@ -184,7 +189,7 @@ <div id="ajaxable-window" class='dialog-window'> <div class="header mono"><a href="#" class="jqmClose">{% trans "Close" %}</a></div> <div class="target"> - <p><img src="{{ STATIC_URL }}img/indicator.gif" alt="*"/> {% trans "Loading" %}</p> + <p><img src="{% static "img/indicator.gif" %}" alt="*"/> {% trans "Loading" %}</p> </div> </div> @@ -212,7 +217,6 @@ {% block extrabody %} {% endblock %} - <script src="{{ STATIC_URL }}js/modernizr.custom.19652.js"></script> - <!--script src="{{ STATIC_URL }}js/modernizr-latest.js"></script--> + <script src="{% static "js/modernizr.custom.19652.js" %}"></script> </body> </html>