add lsi support
This commit is contained in:
parent
8021cea66c
commit
9bb15c97d7
4 changed files with 9 additions and 4 deletions
1
Gemfile
1
Gemfile
|
@ -18,6 +18,7 @@ gem "nokogiri", "~>1.10.9"
|
||||||
group :jekyll_plugins do
|
group :jekyll_plugins do
|
||||||
gem "jekyll-feed", "~> 0.12"
|
gem "jekyll-feed", "~> 0.12"
|
||||||
gem "jekyll-paginate-v2", "~> 3.0.0"
|
gem "jekyll-paginate-v2", "~> 3.0.0"
|
||||||
|
gem "classifier-reborn", "~> 2.2.0"
|
||||||
end
|
end
|
||||||
|
|
||||||
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
|
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
|
||||||
|
|
|
@ -3,12 +3,15 @@ GEM
|
||||||
specs:
|
specs:
|
||||||
addressable (2.7.0)
|
addressable (2.7.0)
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
public_suffix (>= 2.0.2, < 5.0)
|
||||||
|
classifier-reborn (2.2.0)
|
||||||
|
fast-stemmer (~> 1.0)
|
||||||
colorator (1.1.0)
|
colorator (1.1.0)
|
||||||
concurrent-ruby (1.1.6)
|
concurrent-ruby (1.1.6)
|
||||||
em-websocket (0.5.1)
|
em-websocket (0.5.1)
|
||||||
eventmachine (>= 0.12.9)
|
eventmachine (>= 0.12.9)
|
||||||
http_parser.rb (~> 0.6.0)
|
http_parser.rb (~> 0.6.0)
|
||||||
eventmachine (1.2.7)
|
eventmachine (1.2.7)
|
||||||
|
fast-stemmer (1.0.2)
|
||||||
ffi (1.12.2)
|
ffi (1.12.2)
|
||||||
forwardable-extended (2.6.0)
|
forwardable-extended (2.6.0)
|
||||||
http_parser.rb (0.6.0)
|
http_parser.rb (0.6.0)
|
||||||
|
@ -72,6 +75,7 @@ PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
|
classifier-reborn (~> 2.2.0)
|
||||||
jekyll (~> 4.0.0)
|
jekyll (~> 4.0.0)
|
||||||
jekyll-feed (~> 0.12)
|
jekyll-feed (~> 0.12)
|
||||||
jekyll-paginate-v2 (~> 3.0.0)
|
jekyll-paginate-v2 (~> 3.0.0)
|
||||||
|
|
|
@ -2,7 +2,7 @@ url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
||||||
baseurl: "" # the subpath of your site, e.g. /blog
|
baseurl: "" # the subpath of your site, e.g. /blog
|
||||||
title: "Bune City Blog" # the name of your site, e.g. ACME Corp.
|
title: "Bune City Blog" # the name of your site, e.g. ACME Corp.
|
||||||
exclude: [old/]
|
exclude: [old/]
|
||||||
plugins: [jekyll-feed, jekyll-paginate-v2]
|
plugins: [jekyll-feed, jekyll-paginate-v2, classifier-reborn]
|
||||||
|
|
||||||
pagination:
|
pagination:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -181,12 +181,12 @@ p, li {
|
||||||
|
|
||||||
#post-related-posts {
|
#post-related-posts {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.related-post {
|
.related-post {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
margin: 5px;
|
margin: 5px 0;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue