~stub/ubuntu/precise/calibre/devel

« back to all changes in this revision

Viewing changes to src/calibre/manual/templates/layout.html

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-04-12 11:29:25 UTC
  • mfrom: (42.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110412112925-c7171kt2bb5rmft4
Tags: 0.7.50+dfsg-2
* debian/control: Build with libpodofo-dev to enable PDF metadata.
  (Closes: #619632)
* debian/control: Add libboost1.42-dev build dependency. Apparently it is
  needed in some setups. (Closes: #619807)
* debian/rules: Call dh_sip to generate a proper sip API dependency, to
  prevent crashes like #616372 for partial upgrades.
* debian/control: Bump python-qt4 dependency to >= 4.8.3-2, which reportedly
  fixes crashes on startup. (Closes: #619701, #620125)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{% extends "!layout.html" %}
 
2
 
 
3
{% block extrahead %}
 
4
    <style type="text/css">
 
5
        .float-left-img { float: left; margin-right: 1em; margin-bottom: 1em }
 
6
        .float-right-img { float: right; margin-left: 1em; margin-bottom: 1em }
 
7
    </style>
 
8
 
 
9
{% endblock %}
 
10
 
 
11
{% block document %}
 
12
      <div class="documentwrapper">
 
13
      {%- if render_sidebar %}
 
14
        <div class="bodywrapper">
 
15
      {%- endif %}
 
16
        <div class="body">
 
17
            {% if not embedded %}
 
18
            <div id="ad-container" style="text-align:center">
 
19
                    <script type="text/javascript"><!--
 
20
                        google_ad_client = "ca-pub-2595272032872519";
 
21
                        /* User Manual horizontal */
 
22
                        google_ad_slot = "3131592704";
 
23
                        google_ad_width = 728;
 
24
                        google_ad_height = 90;
 
25
                        //-->
 
26
                    </script>
 
27
                    <script type="text/javascript"
 
28
                        src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
 
29
                    </script>
 
30
            </div>
 
31
            {% endif %}
 
32
            {% block body %} {% endblock %}
 
33
        </div>
 
34
      {%- if render_sidebar %}
 
35
        </div>
 
36
      {%- endif %}
 
37
      </div>
 
38
        {% if not embedded %}
 
39
            <script type="text/javascript">
 
40
 
 
41
                var _gaq = _gaq || [];
 
42
                _gaq.push(['_setAccount', 'UA-20736318-1']);
 
43
                _gaq.push(['_setDomainName', '.calibre-ebook.com']);
 
44
                _gaq.push(['_trackPageview']);
 
45
 
 
46
                (function() {
 
47
                    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
 
48
                    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
 
49
                    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
 
50
                })();
 
51
 
 
52
            </script>
 
53
        {%- endif %}
 
54
 
 
55
{% endblock %}
 
56
 
2
57
{% block sidebarlogo %}
3
58
        <p class="logo">
4
59
            <a href="http://calibre-ebook.com"><img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/></a>
12
67
           <hr/>
13
68
{% endblock %}
14
69
 
 
70