We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49344b9 commit 0e18407Copy full SHA for 0e18407
.github/workflows/build.yml
@@ -37,4 +37,4 @@ jobs:
37
38
- name: Convert the notebooks to HTML
39
run: |
40
- nbcollection convert --flatten --build-path=. -v --make-index --index-template=_static/index.tpl tutorials
+ nbcollection convert --flatten --build-path=. -v --make-index --index-template=templates/index.tpl tutorials --exclude=conesearch # TODO: remove this exclude!
templates/index.tpl
@@ -0,0 +1,14 @@
1
+<!doctype html>
2
+<html lang=en>
3
+<head>
4
+<meta charset=utf-8>
5
+<title>Astropy tutorials</title>
6
+</head>
7
+<body>
8
+<ul>
9
+{% for notebook in notebooks %}
10
+ <li><a href="{{ notebook['html_path'] }}">{{ notebook['name'] }}</a></li>
11
+{% endfor %}
12
+</ul>
13
+</body>
14
+</html>
0 commit comments