4
4
5
5
This is the source to [ Jupyter.org] ( http://jupyter.org/ ) .
6
6
7
- # Build instruction.
7
+ # Build instructions
8
8
9
- The site is build using GitHub Pages Jekyll, see [ Jekyll
10
- website] ( http://jekyllrb.com/ ) for customizing build process, and detail on how
11
- what where.
9
+ The site is built using GitHub Pages Jekyll, see [ Jekyll
10
+ website] ( http://jekyllrb.com/ ) for customizing the build process, and detail on how
11
+ what where.
12
12
13
13
# Quick local testing
14
14
@@ -17,25 +17,25 @@ gem install bundler
17
17
bundle install
18
18
```
19
19
20
- cd into the root of this directory,
20
+ cd into the root of this directory,
21
21
22
22
```
23
23
bundle exec jekyll serve --baseurl ''
24
24
```
25
25
26
- Open your browser to localhost:4000
26
+ Open your browser to localhost:4000.
27
27
28
- Edit the various part and reload at will.
28
+ Edit the various parts and reload at will.
29
29
30
- Enjoy
30
+ Enjoy.
31
31
32
- # What is where.
32
+ # What is where
33
33
34
34
Most pages are located at the place where their URL is, nothing fancy. Headers
35
- and footer are in ` _includes/head.html ` , ` _includes/header.html ` ,
35
+ and footer are in ` _includes/head.html ` , ` _includes/header.html ` ,
36
36
` _includes/footer.html ` .
37
37
38
- The ** navbar** is in ` _data/nav.yml ` and look like that:
38
+ The ** navbar** is in ` _data/nav.yml ` and looks like that:
39
39
40
40
```
41
41
head:
50
50
- Donate
51
51
```
52
52
53
- which mean , insert in order the following links into the navbar:
53
+ which means , insert in order the following links into the navbar:
54
54
55
55
- Link to `Home` page, guess the url by yourself.
56
56
- link to `Install` page, the url is...
@@ -60,25 +60,25 @@ which mean, insert in order the following links into the navbar:
60
60
The navbar will automatically target ` _blank ` pages where the url is explicit,
61
61
and mark the correct link as the "current" one.
62
62
63
- # How do I create a new page ?
63
+ # How do I create a new page?
64
64
65
65
Create ` my_page.html ` (will have url ` https://jupyter.org/my_page.html ` )
66
- or ` my_page/index.html ` (will have url ` https://jupyter.org/my_page/ ` ), start with the following :
66
+ or ` my_page/index.html ` (will have url ` https://jupyter.org/my_page/ ` ), start with the following:
67
67
68
68
```
69
69
---
70
70
layout: default
71
71
title: My Page
72
72
---
73
73
74
- write some html here (consider you are already inside `<body></body>`
74
+ write some html here (consider you are already inside `<body></body>`)
75
75
```
76
76
77
- You can not do it yet with .md file, but you will be able soon.
77
+ You cannot do it yet with .md file, but you will be able soon.
78
78
79
- Add commit (and don't forget to add to ` _data/nav.yml `
79
+ Add commit (and don't forget to add to ` _data/nav.yml ` ).
80
80
81
- # Continuous Integration Testing on Travis
81
+ # Continuous integration testing on Travis
82
82
83
83
Travis will run and test:
84
84
0 commit comments