1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
{% extends "!layout.html" %}
{%- block extrahead %}
{{ super() }}
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<link rel="stylesheet" href="{{ pathto('_static/layout.css', 1) }}" type="text/css" />
{% endblock %}
{% block rootrellink %}
<li><a href="{{ pathto('index') }}">home</a>| </li>
<li><a href="{{ pathto('gallery/index') }}">gallery</a>| </li>
{% endblock %}
{% block document %}
<!-- add an empty div to clear the logo on the right. -->
<div style="float: right; right:0px; height: 140px; width:100px; display: block;"></div>
{{ super() }}
{% endblock %}
{% block sidebarlogo %}
<a href="{{ pathto('index') }}">
<img src="{{pathto("_static/cartopy.png", 1) }}"
border="0" alt="Cartopy"/>
</a>
{% endblock %}
{% block footer %}
<div class="footer">
<p style="text-align: left; float: left; margin: 0px; padding: 0 0 0 5px;">Documentation licensed under the <a href="https://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/" rel="license">Open Government Licence</a></p>
{%- if show_copyright %}
© <a href="{{ pathto('copyright') }}">British Crown Copyright</a> 2011 - 2018, Met Office
{%- endif %}
{%- if last_updated %}
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
{%- endif %}
{%- if show_sphinx %}
{% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}
{%- endif %}
</div>
<!-- Point to the *latest* version switcher. This will allow the latest versions to appear on older documentation. -->
<script type="text/javascript" src="https://scitools.org.uk/cartopy/docs/latest/_static/version_switch.js"></script>
{% endblock %}
|