mirror of
				https://github.com/kovidgoyal/calibre.git
				synced 2025-11-03 19:17:02 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "!layout.html" %}
 | 
						|
 | 
						|
{%- block relbar1 %}{{ relbar() }}{% endblock %}
 | 
						|
 | 
						|
{%- block content %}
 | 
						|
  <div class="document">
 | 
						|
    {{ sidebar() }}
 | 
						|
    {%- block document %}
 | 
						|
      <div class="documentwrapper">
 | 
						|
      {%- if render_sidebar %}
 | 
						|
        <div class="bodywrapper">
 | 
						|
      {%- endif %}
 | 
						|
      {% if not embedded %}
 | 
						|
          <div class="body" role="main">
 | 
						|
            <div id="ad-container" style="text-align:center">
 | 
						|
                <script async="async" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
 | 
						|
                <ins class="adsbygoogle"
 | 
						|
                    style="display:inline-block;width:728px;height:90px"
 | 
						|
                    data-ad-client="ca-pub-5939552585043235"
 | 
						|
                    data-ad-slot="7580893187"></ins>
 | 
						|
                <script>
 | 
						|
                (adsbygoogle = window.adsbygoogle || []).push({});
 | 
						|
                </script>
 | 
						|
            </div>
 | 
						|
        {% endif %}
 | 
						|
            {% block body %} {% endblock %}
 | 
						|
          </div>
 | 
						|
      {%- if render_sidebar %}
 | 
						|
        </div>
 | 
						|
      {%- endif %}
 | 
						|
      </div>
 | 
						|
    {%- endblock %}
 | 
						|
    <div class="clearer"></div>
 | 
						|
  </div>
 | 
						|
{%- endblock %}
 | 
						|
 | 
						|
 |