-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mod - doc - config extra set for toml syntax
- Loading branch information
1 parent
e9e75ed
commit 36c5c74
Showing
1 changed file
with
10 additions
and
10 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 |
---|---|---|
|
@@ -19,24 +19,24 @@ The Theme features: | |
|
||
1. [Install Zola](https://getzola.com) | ||
2. Clone the particle theme: `git clone https://github.com/svavs/particle-zola.git` | ||
3. Edit `config.yml` to personalize your site. | ||
3. Edit `config.toml` to personalize your site. | ||
|
||
## Site and User Settings | ||
|
||
You have to fill some informations on the `[extra]` section of the `config.yml` to customize your site. | ||
You have to fill some informations on the `[extra]` section of the `config.toml` to customize your site. | ||
|
||
``` | ||
# Site settings | ||
description: A blog about lorem ipsum dolor sit amet | ||
description = "A blog about lorem ipsum dolor sit amet" | ||
# User settings | ||
username: Lorem Ipsum | ||
user_description: Anon Developer at Lorem Ipsum Dolor | ||
user_title: Anon Developer | ||
email: [email protected] | ||
twitter_username: lorem_ipsum | ||
github_username: lorem_ipsum | ||
gplus_username: lorem_ipsum | ||
username = "Lorem Ipsum" | ||
user_description = "Anon Developer at Lorem Ipsum Dolor" | ||
user_title = "Anon Developer" | ||
email = "[email protected]" | ||
twitter_username = "lorem_ipsum" | ||
github_username = "lorem_ipsum" | ||
gplus_username = "lorem_ipsum" | ||
``` | ||
|
||
## Color and Particle Customization | ||
|