diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-10 02:21:42 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-10 02:21:42 +0300 |
commit | 4eeec178fc2ccce14ef40bfa413738ff693af38c (patch) | |
tree | 209d24dbcd8b896448db90a24d0fe69b926ca13c | |
parent | workflows/jekyll: merge jobs, Bundler caching (diff) | |
download | sorting-algorithms-4eeec178fc2ccce14ef40bfa413738ff693af38c.tar.gz sorting-algorithms-4eeec178fc2ccce14ef40bfa413738ff693af38c.zip |
bump jekyll-theme
-rw-r--r-- | _config.yml | 44 | ||||
-rw-r--r-- | _config_dev.yml | 6 | ||||
-rw-r--r-- | index.html | 2 |
3 files changed, 28 insertions, 24 deletions
diff --git a/_config.yml b/_config.yml index c127ae3..9715a1d 100644 --- a/_config.yml +++ b/_config.yml @@ -1,32 +1,36 @@ # Jekyll -plugins: - - jekyll-github-metadata - - jekyll-remote-theme +baseurl: /sorting-algorithms exclude: - Gemfile - Gemfile.lock - - LICENSE.txt - README.md - vendor/ +# Plugins +plugins: + - jekyll-github-metadata + - jekyll-remote-theme + # jekyll-github-metadata repository: egor-tensin/sorting-algorithms # jekyll-remote-theme -remote_theme: egor-tensin/jekyll-theme@9c44060f0d9dd530a4d90c635da7b83935a1ec19 - -# egor-tensin/jekyll-theme -bootstrap_version: 3.3.7 -jquery_version: 1.12.4 -html5shiv_version: 3.7.3 -respond_version: 1.4.2 +remote_theme: egor-tensin/jekyll-theme@bf361a5d763614873a605ae8f6b8d4c26b30de24 -minified_externals: true - -project: - name: Sorting algorithms - description: Getting the hang out of (sorting) algorithms -baseurl: /sorting-algorithms -personal_info: - name: Egor Tensin - email: Egor.Tensin@gmail.com +# Theme settings +settings: + project: + name: Sorting algorithms + description: Getting the hang out of (sorting) algorithms + license: MIT License + license_file: LICENSE.txt + author: + name: Egor Tensin + email: Egor.Tensin@gmail.com + 3rdparty: + versions: + bootstrap: 3.3.7 + jquery: 1.12.4 + html5shiv: 3.7.3 + respond: 1.4.2 + minified: true diff --git a/_config_dev.yml b/_config_dev.yml index febc099..2206d4d 100644 --- a/_config_dev.yml +++ b/_config_dev.yml @@ -1,3 +1,5 @@ -minified_externals: false +baseurl: '' -baseurl: "" +settings: + 3rdparty: + minified: false @@ -1,8 +1,6 @@ --- title: Main page layout: plain -groups: - - navbar navbar_link: <span class="glyphicon glyphicon-home"></span> Main page custom_css: - plots.css |