Skip to content

Commit 25857b9

Browse files
authored
Merge pull request #432 from choldgraf/docs-intro
[DOCS] Adding introductory documentation to the launch buttons
2 parents 82f77a5 + e81e459 commit 25857b9

File tree

4 files changed

+164
-3
lines changed

4 files changed

+164
-3
lines changed

docs/_templates/launch.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<strong>Try</strong>
22

33
<a
4-
href="{{ pathto('_static/lab/index.html', 1) }}"
4+
href="{{ pathto('_static/lab/', 1) }}?path=intro.ipynb"
55
class="btn btn-warning"
66
target="_blank"
77
data-toggle="tooltip"
@@ -13,7 +13,7 @@
1313
</a>
1414

1515
<a
16-
href="{{ pathto('_static/retro/index.html', 1) }}"
16+
href="{{ pathto('_static/retro/notebooks/index.html', 1) }}?path=intro-retro.ipynb"
1717
class="btn btn-warning"
1818
target="_blank"
1919
data-toggle="tooltip"

examples/README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# JupyterLite Examples
22

33
This folder contains example notebooks and files demoing what is possible to do with
4-
JupyterLite.
4+
JupyterLite. To get started, there is a short introduction in
5+
[the `intro.ipynb` notebook](intro.ipynb).
6+
7+
For examples of using JupyterLite with more kernels, see the other notebooks in this
8+
folder.
9+
10+
For examples of using JupyterLite for scientific computing, see
11+
[the `pyolite` examples folder](pyolite).

examples/intro-retro.ipynb

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "7554b29e-0c66-413f-bda1-8e5ecef46c07",
6+
"metadata": {},
7+
"source": [
8+
"# RetroLab Introduction 🌅\n",
9+
"\n",
10+
"RetroLab is an alternative JupyterLab distribution, built from the ground-up with JupyterLab components, giving the same look and feel as the Classic Jupyter Notebook interface.\n",
11+
"\n",
12+
"> **See Also**: For more information about RetroLab, see [the RetroLab documentation](https://github.com/jupyterlab/retrolab#introduction) and [the RetroLab announcement blog post](https://blog.jupyter.org/retrolab-a-jupyterlab-distribution-with-a-retro-look-and-feel-8096b8b223d0).\n",
13+
"\n",
14+
"RetroLab is focused on a **single document experience**, but re-uses components from the more flexible (but complex) [JupyterLab interface](https://jupyterlab.readthedocs.io). This allows extensions to work between both interfaces, and streamlines the user experience so that they complement one another.\n",
15+
"\n",
16+
"You can do anything with a Jupyter Notebook that you could do with JupyterLab. For example, see the [intro.ipynb](intro.ipynb) Jupyter Notebook, which is an introduction to this repository's content and contains some pointers to get you started.\n",
17+
"\n",
18+
"> **Note**: This interface is provided by the [JupyterLite project](https://jupyterlite.readthedocs.io/en/latest/), which embeds an entire JupyterLab interface, with many popular packages for scientific computing, in your browser. There may be some minor differences in behavior between JupyterLite and the JupyterLab you install locally.\n"
19+
]
20+
}
21+
],
22+
"metadata": {
23+
"kernelspec": {
24+
"display_name": "Pyolite",
25+
"language": "python",
26+
"name": "python"
27+
},
28+
"language_info": {
29+
"codemirror_mode": {
30+
"name": "python",
31+
"version": 3
32+
},
33+
"file_extension": ".py",
34+
"mimetype": "text/x-python",
35+
"name": "python",
36+
"nbconvert_exporter": "python",
37+
"pygments_lexer": "ipython3",
38+
"version": "3.8"
39+
},
40+
"orig_nbformat": 4
41+
},
42+
"nbformat": 4,
43+
"nbformat_minor": 5
44+
}

examples/intro.ipynb

+110
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)