-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.html
238 lines (221 loc) · 9.46 KB
/
layout.html
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
{#
basic/layout.html
~~~~~~~~~~~~~~~~~
Master layout template for Sphinx themes.
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
#}
{# add amazeUI JavaScript file #}
{% set script_files = script_files + ['_static/amazeui.min.js'] %}
{# add Fira Sans, amazeUI, and Pygments CSS files #}
{% set css_files = css_files + ['https://code.cdn.mozilla.net/fonts/fira.css'] %}
{% set css_files = css_files + ['_static/pygments.css', '_static/amazeui.min.css'] %}
{%- block doctype -%}
<!doctype html>
{%- endblock %}
{%- set reldelim1 = reldelim1 is not defined and ' »' 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 = " — "|safe + docstitle|e %}
{%- else %}
{%- set titlesuffix = "" %}
{%- endif %}
{%- macro relbar() %}
<header class="am-topbar am-topbar-fixed-top">
{%- block rootrellink %}
<h1 class="am-topbar-brand">
<a href="#sidebar-navigation" data-am-offcanvas>
<img src="{{ pathto('_static/' + 'nCoda-coda_sign.png', 1) }}" alt="nCoda"/>
{{ shorttitle|e }}
</a>
</h1>
{%- endblock %}
<button class="am-topbar-btn am-topbar-toggle am-btn am-btn-default am-show-sm-only" data-am-collapse="{target:'#topbar-collapse'}">
<span class="am-sr-only">Menu</span><span class="am-icon-bars"></span>
</button>
<div class="am-topbar-right am-collapse am-topbar-collapse" id="topbar-collapse">
<ul class="am-nav am-nav-pills am-topbar-nav">
{%- for rellink in rellinks %}
<li>
<a href="{{ pathto(rellink[0]) }}" title="{{ rellink[1]|striptags|e }}" {{ accesskey(rellink[2]) }}>
{{ rellink[3] }}
</a>
</li>
{%- endfor %}
<li>
<a href="{{ pathto(master_doc) }}" title="Home">
<i class="am-icon-home"></i>
{% if parents %} <i class="am-icon-chevron-right"></i> {% endif %}
</a>
</li>
{%- for parent in parents %}
{% if loop.last %}
<li>
<a href="{{ parent.link|e }}" {{ accesskey("U") }}>
{{ parent.title }} <i class="am-icon-chevron-down"></i>
</a>
</li>
{% else %}
<li>
<a href="{{ parent.link|e }}">
{{ parent.title }} <i class="am-chevron-right"></i>
</a>
</li>
{% endif %}
{%- endfor %}
{%- block relbaritems %} {% endblock %}
</ul>
</div>
</header>
{%- endmacro %}
{%- macro sidebar() %}
<div id="sidebar-navigation" class="am-offcanvas sidebar-navigation" role="navigation" aria-label="main navigation">
<div class="am-offcanvas-bar">
<div class="am-offcanvas-content">
{%- block sidebarlogo %}
<div class="logo">
<a href="https://ncodamusic.org/" rel="nofollow">
<img class="logo" src="{{ pathto('_static/' + 'nCoda-logo_dark_bg.png', 1) }}" alt="nCoda"/>
</a>
<div class="project_version">{{ project }} {{ version }}</div>
</div>
<hr/>
{%- endblock %}
<nav class="am-nav">
<li><a href="{{ pathto(master_doc) }}" class="homelink"><i class="am-icon-home"></i> Home</a></li>
{%- block sidebarsourcelink %}
{%- include "sourcelink.html" %}
{%- endblock %}
{%- block sidebartoc %}
{%- include "localtoc.html" %}
{%- endblock %}
{%- block sidebarrel %}
{%- include "relations.html" %}
{%- endblock %}
{%- if customsidebar %}
{%- include customsidebar %}
{%- endif %}
{%- block sidebarsearch %}
{%- include "searchbox.html" %}
{%- endblock %}
</nav>
</div>
</div>
</div>
{%- 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>
<!-- TODO: finish this -->
{%- for scriptfile in script_files %}
<script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script>
{%- endfor %}
{%- endmacro %}
{%- macro css() %}
{%- for cssfile in css_files %}
<link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
{%- endfor %}
{%- endmacro %}
<html class="no-js"{% if language is not none %} lang="{{ language }}"{% else %} lang="en"{% endif %}>
<head>
<meta charset="{{ encoding }}">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
{# Set rendering engine for 360 Browser #}
<meta name="renderer" content="webkit">
{# Avoid extra ads from Baidu #}
<meta http-equiv="Cache-Control" content="no-siteapp">
{# Tell mobile devices "we got this" #}
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ metatags }}
{%- block htmltitle %}
<title>{{ title|striptags|e }}{{ titlesuffix }}</title>
{%- endblock %}
{{ css() }}
{%- if favicon %}
<link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}"/>
{%- 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(master_doc) }}" />
{%- 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 class="am-with-topbar-fixed-top">
{%- block header %}{% endblock %}
{%- block relbar1 %}{{ relbar() }}{% endblock %}
{%- block sidebar1 %}{{ sidebar() }}{% endblock %}
{%- block content %}
<div class="am-container">
{%- block document %}
<article class="am-cf am-article">
{% block body %} {% endblock %}
</article>
{%- endblock %}
</div>
{%- endblock %}
{%- block footer %}
<footer class="am-footer am-footer-default">
<div class="am-footer-switch">
<a href="https://ncodamusic.org/" class="am-footer-ysp">
<img class="logo" src="{{ pathto('_static/' + 'nCoda-logo_light_bg.png', 1) }}" alt="nCoda"/>
</a>
<span class="am-footer-divider"> | </span>
{{ project }} {{ version }}
</div>
{%- if show_copyright or last_updated or show_sphinx %}
<div class="am-footer-miscs">
{%- if show_copyright %}
{% trans copyright=copyright|e %}© {{ copyright }}.{% endtrans %}
{%- 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-doc.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}
{%- endif %}
</div>
{%- endif %}
</footer>
{%- endblock %}
{%- if not embedded %}
{{ script() }}
{%- 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 %}
{%- endif %}
</body>
</html>