diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-31 15:12:19 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-31 15:12:19 +0300 |
commit | b8640c898c24eab0f2bbad3a5dff1217ea62f1d9 (patch) | |
tree | 5952755fdada993e45394e280558452542e79cbf | |
parent | posts: permalinks without date (diff) | |
download | blog-b8640c898c24eab0f2bbad3a5dff1217ea62f1d9.tar.gz blog-b8640c898c24eab0f2bbad3a5dff1217ea62f1d9.zip |
bump jekyll-theme
-rw-r--r-- | _config.yml | 4 | ||||
-rw-r--r-- | all/index.html | 6 | ||||
-rw-r--r-- | index.html | 8 | ||||
-rw-r--r-- | notes/index.html | 6 |
4 files changed, 15 insertions, 9 deletions
diff --git a/_config.yml b/_config.yml index 7f33d5d..3072e9e 100644 --- a/_config.yml +++ b/_config.yml @@ -52,7 +52,7 @@ repository: egor-tensin/blog # jekyll-paginate paginate: 10 # jekyll-remote-theme -remote_theme: egor-tensin/jekyll-theme@f5dec4b9690193aa0eba8c9705ae01a0238ecf56 +remote_theme: egor-tensin/jekyll-theme@6bf7c39c874004dd87d4c661018acf2285c8e135 # Theme settings settings: @@ -66,7 +66,7 @@ settings: email: Egor.Tensin@gmail.com 3rdparty: versions: - bootstrap: 3.3.7 + bootstrap: 3.4.1 jquery: 1.12.4 html5shiv: 3.7.3 respond: 1.4.2 diff --git a/all/index.html b/all/index.html index 6f8668b..abf0819 100644 --- a/all/index.html +++ b/all/index.html @@ -1,7 +1,9 @@ --- title: Archive layout: default -navbar_link: <span class="glyphicon glyphicon-th-list"></span> Archive -navbar_priority: 2 +navbar: + link: Archive + icon: th-list + priority: 2 --- {% include categories/categories.html %} @@ -1,8 +1,10 @@ --- title: Main page layout: default -navbar_link: <span class="glyphicon glyphicon-home"></span> Main page -navbar_priority: 1 -navbar_paginated: true +navbar: + link: Blog + icon: home + priority: 1 + paginated: true --- {% include posts/posts.html %} diff --git a/notes/index.html b/notes/index.html index 4be3c25..ffcff44 100644 --- a/notes/index.html +++ b/notes/index.html @@ -1,7 +1,9 @@ --- title: Notes -navbar_link: <span class="glyphicon glyphicon-search"></span> Notes -navbar_priority: 3 +navbar: + link: Notes + icon: search + priority: 3 --- {% if site.notes.size != 0 %} <p>This is a complete list of notes I maintain for my personal usage.</p> |