forked from streetturtle/jekyll-clean-dark
-
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
3 changed files
with
69 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# Jekyll configuration | ||
|
||
name: Geozak's Blog | ||
description: Software Developer | ||
|
||
# Url is currently only used only for the RSS feed in feed.xml | ||
#url: http://blog.dev | ||
url: http://localhost:4000 | ||
|
||
# For a project page here should be a project name. Otherwise (for user's/organizaion's page leave it empty) | ||
baseurl: '' | ||
|
||
share: | ||
facebook: true | ||
twitter: true | ||
gplus: true | ||
linkedin: true | ||
pinterest: true | ||
email: true | ||
|
||
social: | ||
github: geozak | ||
stackoverflow: '' | ||
linkedin: '' | ||
instagram: '' | ||
lastfm: '' | ||
rss: feed.xml | ||
|
||
# Google Analytics key, leave blank to ignore | ||
google_analytics_key: | ||
# Yandex metrika (https://metrica.yandex.com/) leave blank to ignore or put true to use | ||
yandex_metrica: | ||
|
||
|
||
# Set this to your disqus shortname to enable comments. Note that the 'comments' | ||
# setting below must also be true. Individual posts can override 'comments' to | ||
# disable on a post-by-post basis | ||
disqus: | ||
comments: false | ||
|
||
permalink: /:year/:month/:title | ||
|
||
# Enable for using pages, more details are here: http://jekyllrb.com/docs/pagination/ | ||
#paginate: 3 | ||
|
||
#highlighter: rouge | ||
|
||
markdown: kramdown | ||
kramdown: | ||
input: GFM # Enable GitHub Flavored Markdown (fenced code blocks) | ||
hard_wrap: true | ||
|
||
exclude: ['README.md', 'LICENSE', 'prep-tags-for-git.sh'] | ||
|
||
include: [.htaccess] | ||
|
||
destination: public |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/sh | ||
|
||
rm -rf tag/ | ||
jekyll build | ||
cp -r _site/tag ./ | ||
git reset HEAD tag/* | ||
git add -f tag/ | ||
git update-index --assume-unchanged tag/*/* | ||
rm -rf tag/ | ||
rm -r _site/ |