-
Notifications
You must be signed in to change notification settings - Fork 183
/
Copy pathdefault.html
186 lines (182 loc) · 6.59 KB
/
default.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
---
nav:
- title: Try
url: /try
- title: Install
url: /install
- title: Get Involved
url: /community
- title: Documentation
url: https://docs.jupyter.org/
newpage: true
- title: News
url: https://blog.jupyter.org
newpage: true
- title: Social
url: /social
- title: Governance
url: /governance/
- title: Security
url: /security
- title: About
url: /about
projects:
- title: Binder
url: /binder
- title: JupyterHub
url: /hub
- title: JupyterLab
url: https://jupyterlab.readthedocs.io/
newpage: true
- title: Jupyter Notebook
url: https://jupyter-notebook.readthedocs.io/
newpage: true
- title: Voilà
url: https://voila.readthedocs.io/
newpage: true
- title: Widgets
url: /widgets
social:
- title: GitHub
url: https://github.com/jupyter/
- title: Mastodon
url: https://hachyderm.io/@ProjectJupyter
- title: BlueSky
url: https://bsky.app/profile/jupyter.org
- title: YouTube
url: https://www.youtube.com/@projectjupyter
legal:
- title: Privacy
url: /privacy
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{% if page.tagline %}{{ page.tagline|strip_html }}{% else %}{{ site.description|strip_html }}{% endif %}" />
<title>{{ site.title }} {% if page.title %}| {{ page.title }}{% endif %}</title>
<meta property="og:title" content="Project Jupyter" />
<meta property="og:description" content="{{ site.description|strip_html }}">
<meta property="og:url" content="{{ site.url }}" />
<meta property="og:image" content="{{ "/assets/share.png" | prepend: site.url }}" />
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.url }}">
<link rel="stylesheet" href="/assets/css/bootstrap.css">
<link rel="stylesheet" href="/assets/css/main.css">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/assets/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="120x120" href="/assets/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="152x152" href="/assets/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon-180x180.png">
<link rel="apple-touch-icon" sizes="167x167" href="/assets/favicons/apple-touch-icon-167x167.png">
<link rel="me" href="https://hachyderm.io/@ProjectJupyter">
<script>console.log('Welcome to Project Jupyter! Explore the various tools available and their corresponding documentation. If you are interested in contributing to the platform, please visit the community resources section at https://jupyter.org/community.html.')</script>
</head>
<body>
<nav class="navbar">
<div class="navbar-header">
<a class="navbar-brand" href="/">
<picture>
<source media="(max-width: 767px)" srcset="/assets/logos/logomark-orangebody-greyplanets.svg">
<source media="(min-width: 768px)" srcset="/assets/logos/rectanglelogo-greytext-orangebody-greymoons.svg">
<img class="navbar-logo"
src="/assets/logos/rectanglelogo-greytext-orangebody-greymoons.svg"
alt="Jupyter Home"
height=40
loading="eager" />
</picture>
</a>
</div>
<button type="button"
class="hamburger"
data-bs-toggle="collapse"
data-bs-target="#bs-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar white-icon-bar"></span>
<span class="icon-bar white-icon-bar"></span>
<span class="icon-bar white-icon-bar"></span>
</button>
<div class="mobile-clearfix"></div>
<div class="collapse navbar-collapse" id="bs-navbar-collapse">
<ul class="navbar-links">
{%- for nav in layout.nav -%}
<li>
<a href="{{nav.url}}"
{%- if nav.newpage %} target="_blank" rel="noopener noreferrer" {% endif %}
class="{% if nav.url == page.url %}navbar-active{% endif %}">
{{nav.title}}
</a>
</li>
{%- endfor %}
</ul>
</div>
</nav>
<section>
{{ content }}
</section>
<footer class="footer">
<section class="linklists">
<div class="content content--wide">
<div class="footer-links">
<h2>Project Jupyter</h2>
<ul>
{%- for obj in layout.nav -%}
<li>
<a href="{{ obj.url }}"
{%- if obj.newpage %} target="_blank" rel="noopener noreferrer" {% endif %}>
{{ obj.title }}
</a>
</li>
{%- endfor %}
</ul>
</div>
<div class="footer-links">
<h2>Subprojects</h2>
<ul>
{%- for obj in layout.projects -%}
<li>
<a href="{{ obj.url }}"
{%- if obj.newpage %} target="_blank" rel="noopener noreferrer" {% endif %}>
{{ obj.title }}
</a>
</li>
{%- endfor %}
</ul>
</div>
<div class="footer-links">
<h2>Follow us</h2>
<ul>
{%- for obj in layout.social -%}
<li>
<a href="{{ obj.url }}"
target="_blank" rel="noopener noreferrer">
{{ obj.title }}
</a>
</li>
{%- endfor %}
</ul>
<h2>Legal</h2>
<ul>
{%- for obj in layout.legal -%}
<li>
<a href="{{ obj.url }}">
{{ obj.title }}
</a>
</li>
{%- endfor %}
</ul>
</div>
</div>
</section>
<section class="footer-text">
<div class="content content--wide">
<img src="/assets/logos/rectanglelogo-blacktext-blackbody-blackplanets.svg" width="189" height="51" alt="Project Jupyter logo">
<p>
The Jupyter® and Jupyter Logo® trademarks are registered with the U.S. Patent & Trademark Office by <a href="https://lf-charities.org/">LF Charities</a>. © {{site.time | date: '%Y' }}
</p>
</div>
</section>
</footer>
<script src="/assets/js/bootstrap-native.min.js" defer></script>
</body>
</html>