mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-02 11:54:53 +08:00
114 lines
4.2 KiB
HTML
114 lines
4.2 KiB
HTML
{#
|
|
scikit-image/layout.html
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
Sphinx layout template for the scikit-image theme, written by
|
|
Johannes Schönberger.
|
|
|
|
#}
|
|
|
|
{%- set url_root = pathto('', 1) %}
|
|
{# XXX necessary? #}
|
|
{%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
|
|
{%- if not embedded and docstitle %}
|
|
{%- set titlesuffix = " — "|safe + docstitle|e %}
|
|
{%- else %}
|
|
{%- set titlesuffix = "" %}
|
|
{%- endif %}
|
|
|
|
{%- macro script() %}
|
|
<script src="http://code.jquery.com/jquery-latest.js"></script>
|
|
<script src="{{ pathto('_static/', 1) }}js/bootstrap.min.js"></script>
|
|
<script type="text/javascript">
|
|
var DOCUMENTATION_OPTIONS = {
|
|
URL_ROOT: '{{ url_root }}',
|
|
VERSION: '{{ release|e }}',
|
|
COLLAPSE_INDEX: false,
|
|
FILE_SUFFIX: '{{ '' if no_search_suffix else file_suffix }}',
|
|
HAS_SOURCE: {{ has_source|lower }}
|
|
};
|
|
</script>
|
|
{%- for scriptfile in script_files %}
|
|
<script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script>
|
|
{%- endfor %}
|
|
{%- endmacro %}
|
|
|
|
{%- macro css() %}
|
|
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
|
|
<link href="{{ pathto('_static/', 1) }}css/bootstrap.min.css" rel="stylesheet" type="text/css">
|
|
<link href="{{ pathto('_static/', 1) }}css/custom.css" rel="stylesheet" type="text/css">
|
|
<link href="http://fonts.googleapis.com/css?family=Raleway" rel="stylesheet" type="text/css">
|
|
{%- for cssfile in css_files %}
|
|
<link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
|
|
{%- endfor %}
|
|
{%- endmacro %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{%- block htmltitle %}
|
|
<title>{{ title|striptags|e }}{{ titlesuffix }}</title>
|
|
{%- endblock %}
|
|
{{ metatags }}
|
|
{{ css() }}
|
|
{{ script() }}
|
|
{%- if hasdoc('about') %}
|
|
<link rel="author" title="{{ _('About these documents') }}" href="{{ pathto('about') }}" />
|
|
{%- endif %}
|
|
{%- if hasdoc('genindex') %}
|
|
<link rel="index" title="{{ _('Index') }}" href="{{ pathto('genindex') }}" />
|
|
{%- endif %}
|
|
{%- if hasdoc('search') %}
|
|
<link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}" />
|
|
{%- endif %}
|
|
{%- if hasdoc('copyright') %}
|
|
<link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}" />
|
|
{%- endif %}
|
|
<link rel="top" title="{{ docstitle|e }}" href="{{ pathto('index') }}" />
|
|
{%- if parents %}
|
|
<link rel="up" title="{{ parents[-1].title|striptags|e }}" href="{{ parents[-1].link|e }}" />
|
|
{%- endif %}
|
|
{%- if next %}
|
|
<link rel="next" title="{{ next.title|striptags|e }}" href="{{ next.link|e }}" />
|
|
{%- endif %}
|
|
{%- if prev %}
|
|
<link rel="prev" title="{{ prev.title|striptags|e }}" href="{{ prev.link|e }}" />
|
|
{%- endif %}
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
|
<link rel="shortcut icon" href="{{ pathto('_static/', 1) }}favicon.ico">
|
|
{%- block extrahead %}{% endblock %}
|
|
</head>
|
|
<body class="container">
|
|
<a href="http://scikit-image.org" class="logo"><img src="{{ pathto('_static/', 1) }}img/logo.png" alt=""></a>
|
|
<div class="clearfix"></div>
|
|
<div class="navbar">
|
|
<div class="navbar-inner">
|
|
<ul class="nav">
|
|
{% include 'navbar.html' %}
|
|
</ul>
|
|
<form class="navbar-form pull-right" action="{{ pathto('search') }}" method="get">
|
|
<input type="text" class="search span3" name="q" placeholder="Search documentation ...">
|
|
<input type="hidden" name="check_keywords" value="yes" >
|
|
<input type="hidden" name="area" value="default" >
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="span9">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
<div class="span3">
|
|
{%- for sidebartemplate in sidebars %}
|
|
{%- include sidebartemplate %}
|
|
{%- endfor %}
|
|
</div>
|
|
</div>
|
|
<div class="well footer">
|
|
<small>
|
|
© Copyright the scikit-image development team.
|
|
Created using <a href="http://twitter.github.com/bootstrap/">Bootstrap</a> and <a href="http://sphinx.pocoo.org/">Sphinx</a>.
|
|
</small>
|
|
</div>
|
|
</body>
|
|
</html>
|