File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,23 @@ included. Follow the instructions below for complete setup.
32
32
3. Install the theme by running `bundle install` inside your site directory.
33
33
4. Replace the current theme in your `_config.yml` file with
34
34
`theme: jekyll-theme-cleaner-blog`.
35
- <!-- TODO: Describe adding `navigation` to `_config.yml` -->
36
- 5. Build your site: `bundle exec jekyll serve`
35
+ 5. Add the following variable to your `_config.yml`:
36
+ ```yaml
37
+ navigation:
38
+ - name: Home
39
+ link: /
40
+ - name: About
41
+ link: /about/
42
+ - name: Posts
43
+ link: /posts/
44
+ - name: Contact
45
+ link: /contact/
46
+ ```
47
+
48
+ This describes the navbar at the top of your site. If it is not present,
49
+ there will be no links on your navbar. You can add or remove links here to
50
+ customize your navigation.
51
+ 6. Build your site: `bundle exec jekyll serve`
37
52
38
53
Assuming there are no errors and the site is building properly, follow these
39
54
steps next:
@@ -85,6 +100,7 @@ matter. Example:
85
100
see how the files are set up.
86
101
87
102
<!-- TODO:
103
+
88
104
5. Add the form to the `contact.html` page. Add the following code to your
89
105
`contact.html` page:
90
106
You can’t perform that action at this time.
0 commit comments