diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-09 23:23:38 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-09 23:23:38 +0300 |
commit | 59916f459680ae3f374ed333fad5543f7447b7f3 (patch) | |
tree | 6c61a0da44b1e881ca5156de9280cffd769848d2 /_config.yml | |
parent | categories: list uncategorized posts too (diff) | |
download | jekyll-theme-59916f459680ae3f374ed333fad5543f7447b7f3.tar.gz jekyll-theme-59916f459680ae3f374ed333fad5543f7447b7f3.zip |
add some pages & posts to showcase the theme
Diffstat (limited to '')
-rw-r--r-- | _config.yml | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..1a4dd85 --- /dev/null +++ b/_config.yml @@ -0,0 +1,59 @@ +# Jekyll +baseurl: '' + +exclude: + - Gemfile + - Gemfile.lock + - LICENSE.txt + - README.md + +defaults: + - scope: + path: '' + type: pages + values: + layout: page + navbar_priority: 999 + - scope: + path: '' + type: posts + values: + layout: post + +excerpt_separator: '' + +highlighter: rouge +markdown: kramdown +kramdown: + syntax_highlighter_opts: + span: + disable: true + +# Plugins +plugins: + - jekyll-github-metadata + - jekyll-paginate + +# jekyll-github-metadata +repository: egor-tensin/jekyll-theme +# jekyll-paginate +paginate: 10 +paginate_path: '/feed/page:num/' + +# Theme settings +settings: + project: + name: jekyll-theme + description: jekyll-theme preview + author: + name: John Doe + email: John.Doe@example.com + navbar: + hide: false + 3rdparty: + versions: + bootstrap: 3.3.7 + jquery: 1.12.4 + html5shiv: 3.7.3 + respond: 1.4.2 + minified: false |