quantinuum_sphinx 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- quantinuum_sphinx-0.3.0/LICENSE +1 -0
- quantinuum_sphinx-0.3.0/PKG-INFO +57 -0
- quantinuum_sphinx-0.3.0/README.md +41 -0
- quantinuum_sphinx-0.3.0/pyproject.toml +25 -0
- quantinuum_sphinx-0.3.0/quantinuum_sphinx/__init__.py +12 -0
- quantinuum_sphinx-0.3.0/quantinuum_sphinx/page.html +264 -0
- quantinuum_sphinx-0.3.0/quantinuum_sphinx/static/injectNav.global.js +182 -0
- quantinuum_sphinx-0.3.0/quantinuum_sphinx/static/styles/quantinuum-sphinx.css +37 -0
- quantinuum_sphinx-0.3.0/quantinuum_sphinx/static/styles/quantinuum-ui-tailwind.css +4089 -0
- quantinuum_sphinx-0.3.0/quantinuum_sphinx/static/styles/quantinuum-ui-tokens.css +81 -0
- quantinuum_sphinx-0.3.0/quantinuum_sphinx/static/styles/quantinuum_favicon.svg +15 -0
- quantinuum_sphinx-0.3.0/quantinuum_sphinx/static/syncTheme.global.js +1 -0
- quantinuum_sphinx-0.3.0/quantinuum_sphinx/theme.toml +9 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
APACHE
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: quantinuum_sphinx
|
|
3
|
+
Version: 0.3.0
|
|
4
|
+
Summary:
|
|
5
|
+
Author: Aidan Keay
|
|
6
|
+
Author-email: aidan.keay@quantinuum.com
|
|
7
|
+
Requires-Python: >=3.10,<4.0
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Requires-Dist: furo (>=2024.5.6,<2025.0.0)
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Quantinuum Sphinx
|
|
17
|
+
|
|
18
|
+
This repo contains templates and static assets that are intended to customize the theme [furo](https://pradyunsg.me/furo/).
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Using the templates in your Sphinx configuration
|
|
22
|
+
|
|
23
|
+
Add the following git URL as a submodule in the same directory as `conf.py`
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
In `conf.py` add:
|
|
27
|
+
|
|
28
|
+
```python
|
|
29
|
+
extensions ['quantinuum_sphinx']
|
|
30
|
+
html_theme = 'quantinuum_sphinx'
|
|
31
|
+
html_favicon = '<path to your favicon file>'
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Create a file `./_static/nav-config.js` containing:
|
|
35
|
+
|
|
36
|
+
```js
|
|
37
|
+
const navConfig = {
|
|
38
|
+
"navTextLinks": [
|
|
39
|
+
{
|
|
40
|
+
"title": string,
|
|
41
|
+
"href": string,
|
|
42
|
+
},
|
|
43
|
+
],
|
|
44
|
+
"navProductName": string,
|
|
45
|
+
"navIconLinks": [
|
|
46
|
+
{
|
|
47
|
+
"title": string,
|
|
48
|
+
"href": string,
|
|
49
|
+
"iconImageURL": string (i.e. "_static/assets/github.svg"),
|
|
50
|
+
},
|
|
51
|
+
],
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Rebuild your docs and you should have a navbar:
|
|
56
|
+

|
|
57
|
+
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Quantinuum Sphinx
|
|
2
|
+
|
|
3
|
+
This repo contains templates and static assets that are intended to customize the theme [furo](https://pradyunsg.me/furo/).
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Using the templates in your Sphinx configuration
|
|
7
|
+
|
|
8
|
+
Add the following git URL as a submodule in the same directory as `conf.py`
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
In `conf.py` add:
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
extensions ['quantinuum_sphinx']
|
|
15
|
+
html_theme = 'quantinuum_sphinx'
|
|
16
|
+
html_favicon = '<path to your favicon file>'
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Create a file `./_static/nav-config.js` containing:
|
|
20
|
+
|
|
21
|
+
```js
|
|
22
|
+
const navConfig = {
|
|
23
|
+
"navTextLinks": [
|
|
24
|
+
{
|
|
25
|
+
"title": string,
|
|
26
|
+
"href": string,
|
|
27
|
+
},
|
|
28
|
+
],
|
|
29
|
+
"navProductName": string,
|
|
30
|
+
"navIconLinks": [
|
|
31
|
+
{
|
|
32
|
+
"title": string,
|
|
33
|
+
"href": string,
|
|
34
|
+
"iconImageURL": string (i.e. "_static/assets/github.svg"),
|
|
35
|
+
},
|
|
36
|
+
],
|
|
37
|
+
}
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Rebuild your docs and you should have a navbar:
|
|
41
|
+

|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "quantinuum_sphinx"
|
|
3
|
+
version = "0.3.0"
|
|
4
|
+
description = ""
|
|
5
|
+
authors = [
|
|
6
|
+
{ name = "Aidan Keay", email = "aidan.keay@quantinuum.com" },
|
|
7
|
+
]
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
|
|
10
|
+
[tool.poetry.dependencies]
|
|
11
|
+
python = "^3.10"
|
|
12
|
+
furo = "^2024.5.6"
|
|
13
|
+
|
|
14
|
+
[tool.poetry]
|
|
15
|
+
include = [
|
|
16
|
+
{ path = "quantinuum_sphinx/page.html", format = ["sdist", "wheel"] },
|
|
17
|
+
{ path = "quantinuum_sphinx/static", format = ["sdist", "wheel"] },
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[build-system]
|
|
21
|
+
requires = ["poetry-core"]
|
|
22
|
+
build-backend = "poetry.core.masonry.api"
|
|
23
|
+
|
|
24
|
+
[project.entry-points]
|
|
25
|
+
"sphinx.html_themes" = { quantinuum_sphinx = "quantinuum_sphinx" }
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
from pathlib import Path
|
|
2
|
+
|
|
3
|
+
from sphinx.application import Sphinx
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def setup(app: Sphinx):
|
|
7
|
+
app.add_html_theme("quantinuum_sphinx", str(Path(__file__).resolve().parent))
|
|
8
|
+
app.add_js_file("injectNav.global.js")
|
|
9
|
+
app.add_js_file("syncTheme.global.js")
|
|
10
|
+
app.add_css_file("styles/quantinuum-sphinx.css")
|
|
11
|
+
app.add_css_file("styles/quantinuum-ui-tailwind.css")
|
|
12
|
+
app.add_css_file("styles/quantinum-ui-tokens.css")
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
{% extends "furo/base.html" %}
|
|
2
|
+
|
|
3
|
+
{% block extrahead %}
|
|
4
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
5
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
6
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="preload"
|
|
7
|
+
as="style">
|
|
8
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet">
|
|
9
|
+
<link rel="shortcut icon" href="_static/styles/quantinuum_favicon.svg">
|
|
10
|
+
|
|
11
|
+
<style>
|
|
12
|
+
.sidebar-sticky {
|
|
13
|
+
top: calc(3.5rem - 0px);
|
|
14
|
+
height: calc(100vh - 3.5rem);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@media (min-width: 97em) {
|
|
18
|
+
html {
|
|
19
|
+
font-size: 100% !important;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
</style>
|
|
24
|
+
{% endblock %}
|
|
25
|
+
|
|
26
|
+
{% block body -%}
|
|
27
|
+
|
|
28
|
+
{{ super() }}
|
|
29
|
+
{% include "partials/icons.html" %}
|
|
30
|
+
<!--Force light mode -->
|
|
31
|
+
<script>document.body.setAttribute('data-theme','light')</script>
|
|
32
|
+
<nav style="position:fixed;top:0;z-index:1021;width:100%;">
|
|
33
|
+
<div class="nexus-nav"></div>
|
|
34
|
+
</nav>
|
|
35
|
+
<input type="checkbox" class="sidebar-toggle" name="__navigation" id="__navigation">
|
|
36
|
+
<input type="checkbox" class="sidebar-toggle" name="__toc" id="__toc">
|
|
37
|
+
<label class="overlay sidebar-overlay" for="__navigation">
|
|
38
|
+
<div class="visually-hidden">Hide navigation sidebar</div>
|
|
39
|
+
</label>
|
|
40
|
+
<label class="overlay toc-overlay" for="__toc">
|
|
41
|
+
<div class="visually-hidden">Hide table of contents sidebar</div>
|
|
42
|
+
</label>
|
|
43
|
+
|
|
44
|
+
<a class="skip-to-content muted-link" href="#furo-main-content">
|
|
45
|
+
{%- trans -%}
|
|
46
|
+
Skip to content
|
|
47
|
+
{%- endtrans -%}
|
|
48
|
+
</a>
|
|
49
|
+
|
|
50
|
+
{% if theme_announcement -%}
|
|
51
|
+
<div class="announcement">
|
|
52
|
+
<aside class="announcement-content">
|
|
53
|
+
{% block announcement %} {{ theme_announcement }} {% endblock announcement %}
|
|
54
|
+
</aside>
|
|
55
|
+
</div>
|
|
56
|
+
{%- endif %}
|
|
57
|
+
|
|
58
|
+
<div class="page">
|
|
59
|
+
<header class="mobile-header">
|
|
60
|
+
<div class="header-left">
|
|
61
|
+
<label class="nav-overlay-icon" for="__navigation">
|
|
62
|
+
<div class="visually-hidden">Toggle site navigation sidebar</div>
|
|
63
|
+
<i class="icon"><svg><use href="#svg-menu"></use></svg></i>
|
|
64
|
+
</label>
|
|
65
|
+
</div>
|
|
66
|
+
<div class="header-center">
|
|
67
|
+
<a href="{{ pathto(master_doc) }}"><div class="brand">{{ docstitle if docstitle else project }}</div></a>
|
|
68
|
+
</div>
|
|
69
|
+
<div class="header-right">
|
|
70
|
+
<div class="theme-toggle-container theme-toggle-header">
|
|
71
|
+
<button class="theme-toggle">
|
|
72
|
+
<div class="visually-hidden">Toggle Light / Dark / Auto color theme</div>
|
|
73
|
+
<svg class="theme-icon-when-auto-light"><use href="#svg-sun-with-moon"></use></svg>
|
|
74
|
+
<svg class="theme-icon-when-auto-dark"><use href="#svg-moon-with-sun"></use></svg>
|
|
75
|
+
<svg class="theme-icon-when-dark"><use href="#svg-moon"></use></svg>
|
|
76
|
+
<svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
|
|
77
|
+
</button>
|
|
78
|
+
</div>
|
|
79
|
+
<label class="toc-overlay-icon toc-header-icon{% if furo_hide_toc %} no-toc{% endif %}" for="__toc">
|
|
80
|
+
<div class="visually-hidden">Toggle table of contents sidebar</div>
|
|
81
|
+
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
|
|
82
|
+
</label>
|
|
83
|
+
</div>
|
|
84
|
+
</header>
|
|
85
|
+
<aside class="sidebar-drawer">
|
|
86
|
+
<div class="sidebar-container">
|
|
87
|
+
{% block left_sidebar %}
|
|
88
|
+
<div class="sidebar-sticky">
|
|
89
|
+
{%- for sidebar_section in sidebars %}
|
|
90
|
+
{%- include sidebar_section %}
|
|
91
|
+
{%- endfor %}
|
|
92
|
+
</div>
|
|
93
|
+
{% endblock left_sidebar %}
|
|
94
|
+
</div>
|
|
95
|
+
</aside>
|
|
96
|
+
<div class="main">
|
|
97
|
+
<div class="content">
|
|
98
|
+
<div class="article-container">
|
|
99
|
+
<a href="#" class="back-to-top muted-link">
|
|
100
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
101
|
+
<path d="M13 20h-2V8l-5.5 5.5-1.42-1.42L12 4.16l7.92 7.92-1.42 1.42L13 8v12z"></path>
|
|
102
|
+
</svg>
|
|
103
|
+
<span>{% trans %}Back to top{% endtrans %}</span>
|
|
104
|
+
</a>
|
|
105
|
+
<div class="content-icon-container">
|
|
106
|
+
{% if theme_top_of_page_button != "edit" -%}
|
|
107
|
+
{{ warning("Got configuration for 'top_of_page_button': this is deprecated.") }}
|
|
108
|
+
{%- endif -%}
|
|
109
|
+
|
|
110
|
+
{%- if theme_top_of_page_buttons == "" -%}
|
|
111
|
+
{% if theme_top_of_page_button == None -%}
|
|
112
|
+
{#- We respect the old configuration of disabling all the buttons -#}
|
|
113
|
+
{%- set theme_top_of_page_buttons = [] -%}
|
|
114
|
+
{% else %}
|
|
115
|
+
{%- set theme_top_of_page_buttons = ["view", "edit"] -%}
|
|
116
|
+
{%- endif -%}
|
|
117
|
+
{% else -%}
|
|
118
|
+
{% if theme_top_of_page_button != "edit" -%}
|
|
119
|
+
{%- set theme_top_of_page_buttons = [] -%}
|
|
120
|
+
{{ warning("Got configuration for both 'top_of_page_button' and 'top_of_page_buttons', ignoring both and removing all top of page buttons.") }}
|
|
121
|
+
{%- endif -%}
|
|
122
|
+
{%- endif -%}
|
|
123
|
+
{% for button in theme_top_of_page_buttons -%}
|
|
124
|
+
{% if button == "view" %}
|
|
125
|
+
{%- include "components/view-this-page.html" with context -%}
|
|
126
|
+
{% elif button == "edit" %}
|
|
127
|
+
{%- include "components/edit-this-page.html" with context -%}
|
|
128
|
+
{% else %}
|
|
129
|
+
{{ warning("Got an unsupported value in 'top_of_page_buttons' for theme configuration") }}
|
|
130
|
+
{% endif %}
|
|
131
|
+
{%- endfor -%}
|
|
132
|
+
{#- Theme toggle -#}
|
|
133
|
+
<div class="theme-toggle-container theme-toggle-content">
|
|
134
|
+
<button class="theme-toggle">
|
|
135
|
+
<div class="visually-hidden">Toggle Light / Dark / Auto color theme</div>
|
|
136
|
+
<svg class="theme-icon-when-auto-light"><use href="#svg-sun-with-moon"></use></svg>
|
|
137
|
+
<svg class="theme-icon-when-auto-dark"><use href="#svg-moon-with-sun"></use></svg>
|
|
138
|
+
<svg class="theme-icon-when-dark"><use href="#svg-moon"></use></svg>
|
|
139
|
+
<svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
|
|
140
|
+
</button>
|
|
141
|
+
</div>
|
|
142
|
+
<label class="toc-overlay-icon toc-content-icon{% if furo_hide_toc %} no-toc{% endif %}" for="__toc">
|
|
143
|
+
<div class="visually-hidden">Toggle table of contents sidebar</div>
|
|
144
|
+
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
|
|
145
|
+
</label>
|
|
146
|
+
</div>
|
|
147
|
+
<article role="main" id="furo-main-content">
|
|
148
|
+
{% block content %}{{ body }}{% endblock %}
|
|
149
|
+
</article>
|
|
150
|
+
</div>
|
|
151
|
+
<footer>
|
|
152
|
+
{% block footer %}
|
|
153
|
+
<div class="related-pages">
|
|
154
|
+
{% if next -%}
|
|
155
|
+
<a class="next-page" href="{{ next.link }}">
|
|
156
|
+
<div class="page-info">
|
|
157
|
+
<div class="context">
|
|
158
|
+
<span>{{ _("Next") }}</span>
|
|
159
|
+
</div>
|
|
160
|
+
<div class="title">{{ next.title }}</div>
|
|
161
|
+
</div>
|
|
162
|
+
<svg class="furo-related-icon"><use href="#svg-arrow-right"></use></svg>
|
|
163
|
+
</a>
|
|
164
|
+
{%- endif %}
|
|
165
|
+
{% if prev -%}
|
|
166
|
+
<a class="prev-page" href="{{ prev.link }}">
|
|
167
|
+
<svg class="furo-related-icon"><use href="#svg-arrow-right"></use></svg>
|
|
168
|
+
<div class="page-info">
|
|
169
|
+
<div class="context">
|
|
170
|
+
<span>{{ _("Previous") }}</span>
|
|
171
|
+
</div>
|
|
172
|
+
{% if prev.link == pathto(master_doc) %}
|
|
173
|
+
<div class="title">{{ _("Home") }}</div>
|
|
174
|
+
{% else %}
|
|
175
|
+
<div class="title">{{ prev.title }}</div>
|
|
176
|
+
{% endif %}
|
|
177
|
+
</div>
|
|
178
|
+
</a>
|
|
179
|
+
{%- endif %}
|
|
180
|
+
</div>
|
|
181
|
+
<div class="bottom-of-page">
|
|
182
|
+
<div class="left-details">
|
|
183
|
+
<div class="copyright">
|
|
184
|
+
Copyright © 2025 Quantinuum Ltd. All rights reserved.
|
|
185
|
+
</div>
|
|
186
|
+
<div class="terms" style="display:flex; gap:0.5rem; align-items:center; margin: 0.25rem 0rem;">
|
|
187
|
+
<a href="https://www.quantinuum.com/privacy-statement" target="_blank">Privacy Statement</a>
|
|
188
|
+
<div role="separator">/</div>
|
|
189
|
+
<a href="https://www.quantinuum.com/cookie-notice" target="_blank">Cookie Notice</a>
|
|
190
|
+
<div role="separator">/</div>
|
|
191
|
+
<a href="https://www.quantinuum.com/terms-conditions" target="_blank">Terms and Conditions</a>
|
|
192
|
+
</div>
|
|
193
|
+
{% trans %}Made with {% endtrans -%}
|
|
194
|
+
{%- if show_sphinx -%}
|
|
195
|
+
{% trans %}<a href="https://www.sphinx-doc.org/">Sphinx</a> and {% endtrans -%}
|
|
196
|
+
<a class="muted-link" href="https://pradyunsg.me">@pradyunsg</a>'s
|
|
197
|
+
{% endif -%}
|
|
198
|
+
{% trans %}
|
|
199
|
+
<a href="https://github.com/pradyunsg/furo">Furo</a>
|
|
200
|
+
{% endtrans %}
|
|
201
|
+
|
|
202
|
+
{%- if last_updated -%}
|
|
203
|
+
<div class="last-updated">
|
|
204
|
+
{% trans last_updated=last_updated|e -%}
|
|
205
|
+
Last updated on {{ last_updated }}
|
|
206
|
+
{%- endtrans -%}
|
|
207
|
+
</div>
|
|
208
|
+
{%- endif %}
|
|
209
|
+
</div>
|
|
210
|
+
<div class="right-details">
|
|
211
|
+
{% if theme_footer_icons or READTHEDOCS -%}
|
|
212
|
+
<div class="icons">
|
|
213
|
+
{% if theme_footer_icons -%}
|
|
214
|
+
{% for icon_dict in theme_footer_icons -%}
|
|
215
|
+
<a class="muted-link {{ icon_dict.class }}" href="{{ icon_dict.url }}" aria-label="{{ icon_dict.name }}">
|
|
216
|
+
{{- icon_dict.html -}}
|
|
217
|
+
</a>
|
|
218
|
+
{% endfor %}
|
|
219
|
+
{%- else -%}
|
|
220
|
+
{#- Show Read the Docs project -#}
|
|
221
|
+
{%- if READTHEDOCS and slug -%}
|
|
222
|
+
<a class="muted-link" href="https://readthedocs.org/projects/{{ slug }}" aria-label="On Read the Docs">
|
|
223
|
+
<svg x="0px" y="0px" viewBox="-125 217 360 360" xml:space="preserve">
|
|
224
|
+
<path fill="currentColor" d="M39.2,391.3c-4.2,0.6-7.1,4.4-6.5,8.5c0.4,3,2.6,5.5,5.5,6.3 c0,0,18.5,6.1,50,8.7c25.3,2.1,54-1.8,54-1.8c4.2-0.1,7.5-3.6,7.4-7.8c-0.1-4.2-3.6-7.5-7.8-7.4c-0.5,0-1,0.1-1.5,0.2 c0,0-28.1,3.5-50.9,1.6c-30.1-2.4-46.5-7.9-46.5-7.9C41.7,391.3,40.4,391.1,39.2,391.3z M39.2,353.6c-4.2,0.6-7.1,4.4-6.5,8.5 c0.4,3,2.6,5.5,5.5,6.3c0,0,18.5,6.1,50,8.7c25.3,2.1,54-1.8,54-1.8c4.2-0.1,7.5-3.6,7.4-7.8c-0.1-4.2-3.6-7.5-7.8-7.4 c-0.5,0-1,0.1-1.5,0.2c0,0-28.1,3.5-50.9,1.6c-30.1-2.4-46.5-7.9-46.5-7.9C41.7,353.6,40.4,353.4,39.2,353.6z M39.2,315.9 c-4.2,0.6-7.1,4.4-6.5,8.5c0.4,3,2.6,5.5,5.5,6.3c0,0,18.5,6.1,50,8.7c25.3,2.1,54-1.8,54-1.8c4.2-0.1,7.5-3.6,7.4-7.8 c-0.1-4.2-3.6-7.5-7.8-7.4c-0.5,0-1,0.1-1.5,0.2c0,0-28.1,3.5-50.9,1.6c-30.1-2.4-46.5-7.9-46.5-7.9 C41.7,315.9,40.4,315.8,39.2,315.9z M39.2,278.3c-4.2,0.6-7.1,4.4-6.5,8.5c0.4,3,2.6,5.5,5.5,6.3c0,0,18.5,6.1,50,8.7 c25.3,2.1,54-1.8,54-1.8c4.2-0.1,7.5-3.6,7.4-7.8c-0.1-4.2-3.6-7.5-7.8-7.4c-0.5,0-1,0.1-1.5,0.2c0,0-28.1,3.5-50.9,1.6 c-30.1-2.4-46.5-7.9-46.5-7.9C41.7,278.2,40.4,278.1,39.2,278.3z M-13.6,238.5c-39.6,0.3-54.3,12.5-54.3,12.5v295.7 c0,0,14.4-12.4,60.8-10.5s55.9,18.2,112.9,19.3s71.3-8.8,71.3-8.8l0.8-301.4c0,0-25.6,7.3-75.6,7.7c-49.9,0.4-61.9-12.7-107.7-14.2 C-8.2,238.6-10.9,238.5-13.6,238.5z M19.5,257.8c0,0,24,7.9,68.3,10.1c37.5,1.9,75-3.7,75-3.7v267.9c0,0-19,10-66.5,6.6 C59.5,536.1,19,522.1,19,522.1L19.5,257.8z M-3.6,264.8c4.2,0,7.7,3.4,7.7,7.7c0,4.2-3.4,7.7-7.7,7.7c0,0-12.4,0.1-20,0.8 c-12.7,1.3-21.4,5.9-21.4,5.9c-3.7,2-8.4,0.5-10.3-3.2c-2-3.7-0.5-8.4,3.2-10.3c0,0,0,0,0,0c0,0,11.3-6,27-7.5 C-16,264.9-3.6,264.8-3.6,264.8z M-11,302.6c4.2-0.1,7.4,0,7.4,0c4.2,0.5,7.2,4.3,6.7,8.5c-0.4,3.5-3.2,6.3-6.7,6.7 c0,0-12.4,0.1-20,0.8c-12.7,1.3-21.4,5.9-21.4,5.9c-3.7,2-8.4,0.5-10.3-3.2c-2-3.7-0.5-8.4,3.2-10.3c0,0,11.3-6,27-7.5 C-20.5,302.9-15.2,302.7-11,302.6z M-3.6,340.2c4.2,0,7.7,3.4,7.7,7.7s-3.4,7.7-7.7,7.7c0,0-12.4-0.1-20,0.7 c-12.7,1.3-21.4,5.9-21.4,5.9c-3.7,2-8.4,0.5-10.3-3.2c-2-3.7-0.5-8.4,3.2-10.3c0,0,11.3-6,27-7.5C-16,340.1-3.6,340.2-3.6,340.2z" />
|
|
225
|
+
</svg>
|
|
226
|
+
</a>
|
|
227
|
+
{%- endif -%}
|
|
228
|
+
{#- Show GitHub repository home -#}
|
|
229
|
+
{%- if READTHEDOCS and display_github and github_user != "None" and github_repo != "None" -%}
|
|
230
|
+
<a class="muted-link" href="https://github.com/{{ github_user }}/{{ github_repo }}" aria-label="On GitHub">
|
|
231
|
+
<svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 16 16">
|
|
232
|
+
<path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"></path>
|
|
233
|
+
</svg>
|
|
234
|
+
</a>
|
|
235
|
+
{%- endif -%}
|
|
236
|
+
{%- endif %}
|
|
237
|
+
</div>
|
|
238
|
+
{%- endif %}
|
|
239
|
+
</div>
|
|
240
|
+
</div>
|
|
241
|
+
{% endblock footer %}
|
|
242
|
+
</footer>
|
|
243
|
+
</div>
|
|
244
|
+
<aside class="toc-drawer{% if furo_hide_toc %} no-toc{% endif %}">
|
|
245
|
+
{% block right_sidebar %}
|
|
246
|
+
{% if not furo_hide_toc %}
|
|
247
|
+
<div class="toc-sticky toc-scroll">
|
|
248
|
+
<div class="toc-title-container">
|
|
249
|
+
<span class="toc-title">
|
|
250
|
+
{{ _("On this page") }}
|
|
251
|
+
</span>
|
|
252
|
+
</div>
|
|
253
|
+
<div class="toc-tree-container">
|
|
254
|
+
<div class="toc-tree">
|
|
255
|
+
{{ toc }}
|
|
256
|
+
</div>
|
|
257
|
+
</div>
|
|
258
|
+
</div>
|
|
259
|
+
{% endif %}
|
|
260
|
+
{% endblock right_sidebar %}
|
|
261
|
+
</aside>
|
|
262
|
+
</div>
|
|
263
|
+
</div>
|
|
264
|
+
{%- endblock %}
|