@@ -111,10 +111,10 @@ Why Jekyll? Read [Andrej Karpathy's blog post](https://karpathy.github.io/2014/0
111111Assuming you have [ Ruby] ( https://www.ruby-lang.org/en/downloads/ ) and [ Bundler] ( https://bundler.io/ ) installed on your system (* hint: for ease of managing ruby gems, consider using [ rbenv] ( https://github.com/rbenv/rbenv ) * ), first [ fork] ( https://guides.github.com/activities/forking/ ) the theme from ` github.com:alshedivat/al-folio ` to ` github.com:<your-username>/<your-repo-name> ` and do the following:
112112
113113``` bash
114- $ git clone
[email protected] :
< your-username
> /
< your-repo-name
> .git
115- $ cd < your-repo-name>
116- $ bundle install
117- $ bundle exec jekyll serve
114+ git clone
[email protected] :
< your-username
> /
< your-repo-name
> .git
115+ cd < your-repo-name>
116+ bundle install
117+ bundle exec jekyll serve
118118```
119119
120120Now, feel free to customize the theme however you like (don't forget to change the name!).
@@ -149,7 +149,7 @@ Starting version [v0.3.5](https://github.com/alshedivat/al-folio/releases/tag/v0
149149
150150If you need to manually re-deploy your website to GitHub pages, run the deploy script from the root directory of your repository:
151151``` bash
152- $ ./bin/deploy
152+ ./bin/deploy
153153```
154154uses the ` master ` branch for the source code and deploys the webpage to ` gh-pages ` .
155155
@@ -159,7 +159,7 @@ uses the `master` branch for the source code and deploys the webpage to `gh-page
159159
160160If you decide to not use GitHub Pages and host your page elsewhere, simply run:
161161``` bash
162- $ bundle exec jekyll build
162+ bundle exec jekyll build
163163```
164164which will (re-)generate the static webpage in the ` _site/ ` folder.
165165Then simply copy the contents of the ` _site/ ` foder to your hosting server.
@@ -179,7 +179,7 @@ Firstly, from the deployment repo dir, checkout the git branch hosting your publ
179179
180180Then from the website sources dir (commonly your al-folio fork's clone):
181181``` bash
182- $ bundle exec jekyll build --destination $HOME /repo/publishing-source
182+ bundle exec jekyll build --destination $HOME /repo/publishing-source
183183```
184184
185185This will instruct jekyll to deploy the website under ` $HOME/repo/publishing-source ` .
@@ -207,9 +207,9 @@ If you installed **al-folio** as described above, you can upgrade to the latest
207207
208208``` bash
209209# Assuming the current directory is <your-repo-name>
210- $ git remote add upstream https://github.com/alshedivat/al-folio.git
211- $ git fetch upstream
212- $ git rebase upstream/v0.3.5
210+ git remote add upstream https://github.com/alshedivat/al-folio.git
211+ git fetch upstream
212+ git rebase upstream/v0.3.5
213213```
214214
215215If you have extensively customized a previous version, it might be trickier to upgrade.
0 commit comments