-
Notifications
You must be signed in to change notification settings - Fork 1
/
configuration.js
49 lines (46 loc) · 1.28 KB
/
configuration.js
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
var Config = {
title: "Sample Lecture",
// put the url of the deployed application here
url: "https://hydrocode-de.github.io/sample-lecture-python",
navigation: [
{
label: "Home",
link: "index.md",
// every custom .md or .html added needs this type
type: "static"
},
{
label: "Notebooks",
navigation: [
{
label: "Overview",
link: "sample_lecture.html"
},
{
label: "Plots",
link: "interactive_plots.html"
}
]
},
{
label: "Presentations",
navigation: [
{
label: "Overview",
link: "sample_lecture.slides.html"
},
{
label: "Plots",
link: "interactive_plots.slides.html"
}
]
},
// please do not remove this page
// as it describes that you are using a hydrocode application
{
label: "About",
link: "about.md",
type: "static"
}
]
};