aapssfc/book/_templates/runestone_slides/layout.html
2015-03-03 15:56:44 +01:00

171 lines
6.1 KiB
HTML

{#
basic/layout.html
~~~~~~~~~~~~~~~~~
Master layout template for Sphinx themes.
:copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
#}
{%- block doctype -%}
<!DOCTYPE html>
{%- endblock %}
{%- set reldelim1 = reldelim1 is not defined and ' &raquo;' or reldelim1 %}
{%- set reldelim2 = reldelim2 is not defined and ' |' or reldelim2 %}
{%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and
(sidebars != []) %}
{%- set url_root = pathto('', 1) %}
{# XXX necessary? #}
{%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
{%- if not embedded and docstitle %}
{%- set titlesuffix = " &mdash; "|safe + docstitle|e %}
{%- else %}
{%- set titlesuffix = "" %}
{%- endif %}
{%- macro relbar() %}
{%- endmacro %}
{%- macro sidebar() %}
{%- endmacro %}
{%- macro 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 %}
{% if theme_custom_js %}
<script type="text/javascript" src="{{ pathto('_static/' + theme_custom_js, 1) }}"></script>
{% endif %}
{%- endmacro %}
{%- macro css() %}
<link rel="stylesheet" href="{{ pathto('_static/basic.css', 1) }}" type="text/css" />
<link rel="stylesheet" href="{{ pathto('_static/styles.css', 1) }}" type="text/css" />
<link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
{% if theme_custom_css %}
<link rel="stylesheet" href="{{ pathto('_static/' + theme_custom_css, 1) }}" type="text/css" />
{% endif %}
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
{%- for cssfile in css_files %}
<link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
{%- endfor %}
{%- endmacro %}
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset={{ encoding }}" />
{{ metatags }}
{%- block htmltitle %}
<title>{{ title|striptags|e }}{{ titlesuffix }}</title>
{%- endblock %}
{{ css() }}
<script type="text/javascript" src="_static/jquery.js" />
<script type="text/javascript" src="_static/parsons.js" />
<script type="text/javascript" src="_static/parsons-noconflict.js" />
{%- if not embedded %}
{%- if use_opensearch %}
<link rel="search" type="application/opensearchdescription+xml"
title="{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}"
href="{{ pathto('_static/opensearch.xml', 1) }}"/>
{%- endif %}
{%- if favicon %}
<link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}"/>
{%- endif %}
{%- endif %}
{%- block linktags %}
{%- 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 %}
{%- endblock %}
{%- block extrahead %} {% endblock %}
</head>
<body>
{%- block header %}{% endblock %}
<script type="text/javascript">
eBookConfig = {};
eBookConfig.host = '{{course_url}}' ? '{{course_url}}' : 'http://interactivepython.org';
eBookConfig.app = eBookConfig.host+'/{{appname}}';
eBookConfig.ajaxURL = eBookConfig.app+'/ajax/';
eBookConfig.course = '{{course_id}}';
eBookConfig.logLevel = {{loglevel}};
eBookConfig.loginRequired = {{login_required}}
eBookConfig.build_info = "{{build_info}}";
eBookConfig.isLoggedIn = false;
</script>
<section
id="slide_container"
class='slides {% block slide_container_class %}layout-regular{% endblock %}'>
{% block body %} {% endblock %}
</section>
{% block presenter_notes %}{% endblock %}
{%- if not embedded %}
{{ script() }}
{%- endif %}
<script type="text/javascript" charset="utf-8">
$(document).ready(createEditors);
$(document).ready(styleUnittestResults());
</script>
<script type="text/javascript">
// add the video play button overlay image
$(".video-play-overlay").each(function() {
$(this).css('background-image', "url(\'_static/play_overlay_icon.png\')")
});
// This function is needed to allow the dropdown search bar to work;
// The default behaviour is that the dropdown menu closes when something in
// it (like the search bar) is clicked
$(function() {
// Fix input element click problem
$('.dropdown input, .dropdown label').click(function(e) {
e.stopPropagation();
});
});
// style codelens buttons (doing it here because PyTutor is a submodule owned by someone else
$(function() {
$(".ExecutionVisualizer").each(function() {
$(this).find("#jmpFirstInstr").addClass('btn btn-default');
$(this).find("#jmpStepBack").addClass('btn btn-danger');
$(this).find("#jmpStepFwd").addClass('btn btn-success');
$(this).find("#jmpLastInstr").addClass('btn btn-default');
});
});
</script>
</body>
</html>