diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-16 17:39:37 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-16 17:39:37 +0300 |
commit | cfc682283246a2f7167682a82b0ac62365cbe7fb (patch) | |
tree | d0e9c829f4a4cb02a0278bc6e49910d896af9c12 /_config.yml | |
parent | code style (diff) | |
download | jekyll-theme-cfc682283246a2f7167682a82b0ac62365cbe7fb.tar.gz jekyll-theme-cfc682283246a2f7167682a82b0ac62365cbe7fb.zip |
more flexible prerequisite management
* Move external <link>s and <script>s into separate includes.
* Opt for minified versions of external CSS stylesheets and JavaScript
files by default, allowing to use the properly formatted versions during
development using _config_dev.yml.
* External components versions are now in the config file.
Diffstat (limited to '_config.yml')
-rw-r--r-- | _config.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/_config.yml b/_config.yml index 95df734..4c1d792 100644 --- a/_config.yml +++ b/_config.yml @@ -2,3 +2,8 @@ baseurl: /cpp_tips paginate: 10 include_comments: true excerpt_separator: "" +bootstrap_version: 3.2.0 +jquery_version: 1.11.0 +html5shiv_version: 3.7.2 +respond_version: 1.4.2 +minified_externals: true |