@@ -26,15 +26,15 @@ with a few enhancements thrown in for good measure:
26
26
2 . [ GitHub Pages Method] ( #github-pages-method )
27
27
1 . [ Remove the Unnecessary] ( #remove-the-unnecessary )
28
28
2 . [ Upgrading] ( #upgrading )
29
- 3 . [ Ruby Gem] ( #ruby-gem )
30
- 4 . [ Remote Theme] ( #remote-theme )
31
- 5 . [ Use Git] ( #use-git )
32
- 1 . [ Pull Down Updates] ( #pull-down-updates )
33
- 6 . [ Update Files Manually] ( #update-files-manually )
34
- 7 . [ Structure] ( #structure )
29
+ 1 . [ Ruby Gem] ( #ruby-gem )
30
+ 2 . [ Remote Theme] ( #remote-theme )
31
+ 3 . [ Use Git] ( #use-git )
32
+ 1 . [ Pull Down Updates] ( #pull-down-updates )
33
+ 4 . [ Update Files Manually] ( #update-files-manually )
34
+ 3 . [ Structure] ( #structure )
35
35
1 . [ Starting Fresh] ( #starting-fresh )
36
36
2 . [ Starting from ` jekyll new ` ] ( #starting-from-jekyll-new )
37
- 8 . [ Configuration] ( #configuration )
37
+ 4 . [ Configuration] ( #configuration )
38
38
1 . [ Skin] ( #skin )
39
39
2 . [ Google Fonts] ( #google-fonts )
40
40
3 . [ Text] ( #text )
@@ -44,27 +44,27 @@ with a few enhancements thrown in for good measure:
44
44
7 . [ Reading Time] ( #reading-time )
45
45
8 . [ Comments (via Disqus)] ( #comments-via-disqus )
46
46
9 . [ Google Analytics] ( #google-analytics )
47
- 9 . [ Layouts] ( #layouts )
47
+ 5 . [ Layouts] ( #layouts )
48
48
1 . [ ` layout: default ` ] ( #layout-default )
49
49
2 . [ ` layout: post ` ] ( #layout-post )
50
50
3 . [ ` layout: page ` ] ( #layout-page )
51
51
4 . [ ` layout: home ` ] ( #layout-home )
52
52
5 . [ ` layout: about ` ] ( #layout-about )
53
53
6 . [ ` layout: cv ` ] ( #layout-cv )
54
- 10 . [ Customization] ( #customization )
54
+ 6 . [ Customization] ( #customization )
55
55
1 . [ Overriding Includes and Layouts] ( #overriding-includes-and-layouts )
56
56
2 . [ Customizing Sass (SCSS)] ( #customizing-sass-scss )
57
57
3 . [ Customizing JavaScript] ( #customizing-javascript )
58
58
4 . [ SVG Icons] ( #svg-icons )
59
59
5 . [ Customizing Sidebar Content] ( #customizing-sidebar-content )
60
- 11 . [ Development] ( #development )
61
- 12 . [ Contributing] ( #contributing )
60
+ 7 . [ Development] ( #development )
61
+ 8 . [ Contributing] ( #contributing )
62
62
1 . [ Pull Requests] ( #pull-requests )
63
- 13 . [ Credits] ( #credits )
63
+ 9 . [ Credits] ( #credits )
64
64
1 . [ Creator] ( #creator )
65
65
2 . [ Icons + Demo Images:] ( #icons--demo-images )
66
66
3 . [ Other:] ( #other )
67
- 14 . [ License] ( #license )
67
+ 10 . [ License] ( #license )
68
68
69
69
## Installation
70
70
@@ -158,12 +158,12 @@ site and you should something similar to:
158
158
159
159
At the top of every ` .html ` file, ` /assets/css/main.css ` , and ` /assets/js/main.js ` .
160
160
161
- ## Ruby Gem
161
+ ### Ruby Gem
162
162
163
163
Simply run ` bundle update ` if you're using Bundler (have a ` Gemfile ` ) or `gem
164
164
update jekyll-theme-basically-basic` if you're not.
165
165
166
- ## Remote Theme
166
+ ### Remote Theme
167
167
168
168
When hosting with GitHub Pages you'll need to push up a commit to force a
169
169
rebuild with the latest [ theme release] ( https://github.com/mmistakes/jekyll-theme-basically-basic/releases ) .
@@ -175,7 +175,7 @@ the moment:
175
175
git commit --allow-empty -m "Force rebuild of site"
176
176
```
177
177
178
- ## Use Git
178
+ ### Use Git
179
179
180
180
If you want to get the most out of the Jekyll + GitHub Pages workflow, then
181
181
you'll need to utilize Git. To pull down theme updates you must first ensure
@@ -190,7 +190,7 @@ To add it you can do the following:
190
190
git remote add upstream https://github.com/mmistakes/jekyll-theme-basically-basic.git
191
191
```
192
192
193
- ### Pull Down Updates
193
+ #### Pull Down Updates
194
194
195
195
Now you can pull any commits made to theme's ` master ` branch with:
196
196
@@ -202,7 +202,7 @@ Depending on the amount of customizations you've made after forking, there's
202
202
likely to be merge conflicts. Work through any conflicting files Git flags,
203
203
staging the changes you wish to keep, and then commit them.
204
204
205
- ## Update Files Manually
205
+ ### Update Files Manually
206
206
207
207
Another way of dealing with updates is [ downloading the theme] ( https://github.com/mmistakes/jekyll-theme-basically-basic/archive/master.zip )
208
208
--- replacing your layouts, includes, and assets with the newer ones manually.
0 commit comments