forked from aweekj/Kiko-plus
-
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.
Change sample image, delete unused font
- Loading branch information
Showing
9 changed files
with
46 additions
and
68 deletions.
There are no files selected for viewing
Binary file not shown.
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
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 |
---|---|---|
|
@@ -3,9 +3,7 @@ title: About | |
permalink: /about/ | ||
--- | ||
|
||
This blog is demo blog for [Kiko Plus](https://github.com/AWEEKJ/Kiko-plus) | ||
|
||
This theme is inspired by [Kiko](http://github.com/gfjaru/Kiko) theme, powered by [Jekyll](http://jekyllrb.com), hosted on [Github Pages](https://pages.github.com). | ||
You can see live demo [here](https://aweekj.github.io/Kiko-plus). This theme is inspired by [Kiko](http://github.com/gfjaru/Kiko) theme. | ||
|
||
## Features | ||
|
||
|
@@ -21,8 +19,7 @@ This theme is inspired by [Kiko](http://github.com/gfjaru/Kiko) theme, powered b | |
#### Method 1: new master's repository (The Best) | ||
|
||
1. First [fork](https://github.com/AWEEKJ/Kiko-plus/fork) it. | ||
2. Change your forked repository name _Kiko-plus_ to __USERNAME.github.io__ where | ||
__USERNAME__ is your github user name. | ||
2. Change your forked repository name _Kiko-plus_ to __USERNAME.github.io__ where __USERNAME__ is your github username. | ||
3. Access your new blog via [https://username.github.io](https://username.github.io). | ||
4. [See configuration](#configuration). | ||
|
||
|
@@ -35,39 +32,28 @@ This theme is inspired by [Kiko](http://github.com/gfjaru/Kiko) theme, powered b | |
5. Push new branch to remote `git push gh-pages`. | ||
6. Update `_config.yml` file by changing `baseurl: "<branchName>"` _branchName_ is your branch name where _gh-pages_ resides. See [configuration](#configuration). | ||
|
||
#### Method 3: run it locally | ||
#### Method 3: Run it locally | ||
|
||
1. Download [zip](https://github.com/AWEEKJ/Kiko-plus/archive/master.zip) or clone it `git clone https://github.com/AWEEKJ/Kiko-plus`. | ||
2. Go inside folder and run `jekyll serve` or `bundle exec jekyll s` or `rake preview`. This will build a website which you can access [https://localhost:4000](https://localhost:4000). You need to have [Jekyll](https://jekyllrb.com/docs/installation/) installed to do this. | ||
2. Go inside folder and run `jekyll serve` or `rake preview`. This will build a website which you can access [https://localhost:4000](https://localhost:4000). You need to have [Jekyll](https://jekyllrb.com/docs/installation/) installed to do this. | ||
|
||
|
||
## Configuration | ||
|
||
All configuration is done via `_config.yml` file which you will find in your main repo folder. Change this `<something>` to yours. | ||
|
||
- Change this to your blog name. | ||
|
||
```yml | ||
name: <blog-name> | ||
``` | ||
### Basic | ||
|
||
- Change this to your domain. **NOTE**- if running locally change this to `url: "https://localhost:4000"`. | ||
- Config your blog name. | ||
|
||
```yml | ||
url: "https://<your-name>.github.io" | ||
``` | ||
|
||
- Change this to your branch name where _gh-pages_ resides. !NOTE apply only if you used __Method 2__ for installation. | ||
|
||
```yml | ||
baseurl: "/<branch-name>" | ||
name: <blog-name> | ||
``` | ||
- These configuration in `author:` is for links to icons in footer. Modify `_includes/footer.html` to add more link icons. | ||
- These configuration in `author:` is for links to icons in footer. If you want to add more link icons, modify `_includes/footer.html` file. | ||
|
||
```yml | ||
author: | ||
name: your-name | ||
facebook: your-id | ||
twitter: your-id | ||
github: your-id | ||
|
@@ -77,25 +63,58 @@ author: | |
email: [email protected] | ||
``` | ||
|
||
- Change copyright year and name in footer. | ||
|
||
```yml | ||
copyright: | ||
year: 2017 | ||
name: Kiko | ||
``` | ||
|
||
### Google analytics | ||
|
||
- Change this to your Google Analytic ID. | ||
|
||
```yml | ||
google-analytics: | ||
id: your-id | ||
id: "your-id" | ||
``` | ||
|
||
- Change this to your Disqus ID. | ||
### Disqus | ||
|
||
- Change this to your Disqus short name. | ||
|
||
```yml | ||
disqus: | ||
id: your-id | ||
id: "your-id" | ||
``` | ||
|
||
### URL | ||
|
||
- Config your domain. | ||
|
||
```yml | ||
url: "https://<your-name>.github.io" | ||
``` | ||
|
||
- **NOTE** When if running locally, change url to | ||
|
||
```yml | ||
url: "https://localhost:4000" | ||
``` | ||
|
||
- Change this to your branch name where _gh-pages_ resides. | ||
- **NOTE** apply only if you used __Method 2__ for installation. | ||
|
||
```yml | ||
baseurl: "/<branch-name>" | ||
``` | ||
|
||
## Rakefile Usage | ||
|
||
```bash | ||
$ rake post title="A Title" [date="2015-08-16"] [tags=[tag1,tag2]] | ||
$ rake draft title="A Title" [date="2015-08-16"] [tags=[tag1,tag2]] | ||
$ rake post title="A Title" [date="2015-08-16"] [tags="[tag1, tag2]"] | ||
$ rake draft title="A Title" [date="2015-08-16"] [tags="[tag1, tag2]"] | ||
$ rake preview | ||
``` | ||
|
||
|
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.