forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,26 @@ $ gem install jekyll | |
|
||
Fork the repo, and then clone it so you've got the code locally. | ||
|
||
### Modify the _config.yml | ||
|
||
The `_config.yml` located in the root of the Pixyll directory contains all of the configuration details | ||
for the Jekyll site. The defaults are: | ||
|
||
```yml | ||
# Site settings | ||
title: Pixyll | ||
email: [email protected] | ||
author: John Otander | ||
description: "A simple, beautiful theme for Jekyll that emphasizes content rather than aesthetic fluff." | ||
baseurl: "" | ||
url: "http://pixyll.com" | ||
|
||
# Build settings | ||
markdown: kramdown | ||
permalink: pretty | ||
paginate: 3 | ||
``` | ||
### Jekyll Serve | ||
Then, start the Jekyll Server. I always like to give the `--watch` option so it updates the generated HTML when I make changes. | ||
|