You can see live demo here. This theme is inspired by Kiko theme.
git clone https://github.com/AWEEKJ/Kiko-plus.git
- this will clone Kiko-plus template to your computer.git checkout -b gh-pages
where gh-pages will be your branch name.git remote add gh-pages https://github.com/<yourName>/<yourMaster>/gh-pages
. yourName is your account name and yourMaster is your repository.git push gh-pages
._config.yml
file by changing baseurl: "<branchName>"
branchName is your branch name where gh-pages resides. See configuration.git clone https://github.com/AWEEKJ/Kiko-plus
.jekyll serve
or rake preview
. This will build a website which you can access https://localhost:4000. You need to have Jekyll installed to do this.All configuration is done via _config.yml
file which you will find in your main repo folder. Change this <something>
to yours.
name: <blog-name>
author:
is for links to icons in footer. If you want to add more link icons, modify _includes/footer.html
file.author:
facebook: your-id
twitter: your-id
github: your-id
linkedin: your-id
medium: your-id
tumblr: your-id
email: your-id@your-email.com
copyright:
year: 2017
name: Kiko
google-analytics:
id: "your-id"
disqus:
id: "your-id"
url: "https://<your-name>.github.io"
url: "https://localhost:4000"
baseurl: "/<branch-name>"
# Create new post
$ rake post title="A Title" [date="2015-08-16"] [tags="[tag1, tag2]"]
# Create new draft post
$ rake draft title="A Title" [date="2015-08-16"] [tags="[tag1, tag2]"]
# Install Jekyll Plugins. Do before running in local.
$ rake geminstall
# Run in Local
$ rake preview
This theme is released under MIT License.