mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-29 16:16:07 +08:00
abbd7c8854
Summary: * Label current version with an html id so it can be highlighted in CSS. * Note: Switched out arrow indicator for a disc b/c it's easier (unicode bullets are not well-supported). * Move script file to theme and use standard Sphinx theming to include javascript file.
59 lines
1.4 KiB
HTML
59 lines
1.4 KiB
HTML
{#
|
|
agogo/layout.html
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
Sphinx layout template for the agogo theme, originally written
|
|
by Andi Albrecht.
|
|
|
|
:copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
#}
|
|
{% extends "basic/layout.html" %}
|
|
{% set script_files = script_files + ['_static/docversions.js'] %}
|
|
|
|
{% block header %}
|
|
<div class="header-wrapper">
|
|
<div class="header">
|
|
{%- block headertitle %}
|
|
|
|
{%- if logo %}
|
|
<div class="logo"><a href="http://scikits-image.org">
|
|
<img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/>
|
|
</a></div>
|
|
{%- endif %}
|
|
{# <h1><a href="{{ pathto(master_doc) }}">{{ shorttitle|e }}</a></h1> #}
|
|
{%- endblock %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
<div class="content-wrapper">
|
|
<div class="content">
|
|
{%- block sidebar2 %}
|
|
{# We don't want the logo here #}
|
|
{%- block sidebarlogo %} {% endblock %}
|
|
{{ sidebar() }}
|
|
{% endblock %}
|
|
<div class="document">
|
|
{%- block document %}
|
|
{{ super() }}
|
|
{%- endblock %}
|
|
</div>
|
|
<div class="clearer"></div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
<div class="footer-wrapper">
|
|
{{ super() }}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block relbar1 %}{% endblock %}
|
|
|
|
{% block relbar2 %}{% endblock %}
|