X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/65a1f637391920c91a42cfd36695e55b84a1eb95..4f8142e9c019b68f81e16e839025302957905d0a:/wolnelektury/templates/catalogue/book_text.html diff --git a/wolnelektury/templates/catalogue/book_text.html b/wolnelektury/templates/catalogue/book_text.html index d733555a6..a6aa19e1d 100644 --- a/wolnelektury/templates/catalogue/book_text.html +++ b/wolnelektury/templates/catalogue/book_text.html @@ -1,27 +1,74 @@ +{% load i18n %} {% load chunks compressed catalogue_tags %} <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> - <title>{% block title %}WolneLektury.pl{% endblock %}</title> - <link rel="icon" href="/media/img/favicon.png" type="image/x-icon" /> + <title>{% trans "Wolne Lektury" %} :: {{ book.pretty_title }}</title> + <link rel="icon" href="{{ STATIC_URL }}img/favicon.png" type="image/x-icon" /> {% compressed_css "book" %} - {% compressed_js "jquery" %} + <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> {% compressed_js "book" %} + <!--[if IE]> + {% compressed_js "book_ie" %} + <![endif]--> + </head> <body> <div id="menu"> <ul> - <li><a href="#toc">Spis treÅci</a></li> - <li><a href="#">Motywy</a></li> + <li><a class="menu" href="#toc">{% trans "Table of contents" %}</a></li> + <li><a class="menu" href="#themes">{% trans "Themes" %}</a></li> + <li><a class="menu" href="#nota_red">{% trans "Edit. note" %}</a></li> + <li><a class="menu" href="#info">{% trans "Infobox" %}</a></li> + <li><a href="{{ book.get_absolute_url }}">{% trans "Book's page" %}</a></li> + <li><a class="menu" href="#download">{% trans "Download" %}</a></li> + </ul> + </div> + <div id="info"> + {% book_info book %} + </div> + <div id="download"> + <ul> + {% if book.pdf_file %} + <li><a href="{{ book.pdf_file.url}}">PDF</a> {% trans "to print" %}</li> + {% endif %} + {% if book.epub_file %} + <li><a href="{{ book.epub_file.url}}">EPUB</a> {% trans "for a reader" %}</li> + {% endif %} + {% if book.mobi_file %} + <li><a href="{{ book.mobi_file.url}}">MOBI</a> {% trans "for Kindle" %}</li> + {% endif %} + {% if book.txt_file %} + <li><a href="{{ book.txt_file.url}}">TXT</a> {% trans "for advanced usege" %}</li> + {% endif %} + <li><a href="{% url custom_pdf_form %}?slug={{ book.slug }}">{% trans "Download a custom PDF" %}</a></li> </ul> </div> <div id="header"> - <div id="logo"> - <a href="/"><img src="/media/img/logo.png" alt="WolneLektury.pl - logo" /></a> - </div> + <a href="/"><img src="{{ STATIC_URL }}img/logo-220.png" alt="Wolne Lektury" /></a> + </div> + <div id="themes"> + <ol> + {% for theme, fragments in book_themes %} + <li>{{ theme }}: + {% for fragment in fragments %} + <a href="#m{{ fragment.anchor }}">{{ forloop.counter }}</a> + {% endfor %} + </li> + {% endfor %} + </ol> </div> {{ book.html_file.read|safe }} + {{ piwik_tag|safe }} + <script type="text/javascript"> + var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); + document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); + </script> + <script type="text/javascript"> + var pageTracker = _gat._getTracker("UA-2576694-1"); + pageTracker._trackPageview(); + </script> </body> </html>