update search provider and add exlclude for .jekyll-cache for later version of Jekyll
This commit is contained in:
parent
40743b9ce3
commit
d0774fdde5
18
_config.yml
18
_config.yml
|
@ -73,13 +73,13 @@ staticman:
|
||||||
endpoint : # URL of your own deployment with trailing slash, will fallback to the public instance
|
endpoint : # URL of your own deployment with trailing slash, will fallback to the public instance
|
||||||
atom_feed:
|
atom_feed:
|
||||||
path : # blank (default) uses feed.xml
|
path : # blank (default) uses feed.xml
|
||||||
search : false # true, false (default)
|
search : true # true, false (default)
|
||||||
search_full_content : false # true, false (default)
|
search_full_content : true # true, false (default)
|
||||||
search_provider : "algolia"
|
search_provider : "lunr" # "algolia"
|
||||||
algolia:
|
algolia:
|
||||||
application_id : "QB6HVGBSBA"
|
application_id : "F5FF4IDLYX"
|
||||||
index_name : "dev_minimal-mistakes"
|
index_name : "tarasis-blog"
|
||||||
search_only_api_key : "9d5014e5bbc77372547bce778dfa5663"
|
search_only_api_key : "ed656902b5bdd356f885bf9d99635fc1"
|
||||||
powered_by : true
|
powered_by : true
|
||||||
|
|
||||||
# SEO Related
|
# SEO Related
|
||||||
|
@ -114,7 +114,7 @@ author:
|
||||||
name : "Robert McGovern"
|
name : "Robert McGovern"
|
||||||
avatar : "/assets/images/bio-photo.jpg"
|
avatar : "/assets/images/bio-photo.jpg"
|
||||||
bio : "Wannabe field researcher for the Hitchhikers Guide to the Galaxy"
|
bio : "Wannabe field researcher for the Hitchhikers Guide to the Galaxy"
|
||||||
location : "Sector ZZ9 Plural Z Alpha"
|
location : "Sector ZZ9 Plural Z\n Alpha"
|
||||||
links:
|
links:
|
||||||
- label: "Your Website"
|
- label: "Your Website"
|
||||||
icon: "fas fa-fw fa-link"
|
icon: "fas fa-fw fa-link"
|
||||||
|
@ -161,6 +161,7 @@ exclude:
|
||||||
- .asset-cache
|
- .asset-cache
|
||||||
- .bundle
|
- .bundle
|
||||||
- .jekyll-assets-cache
|
- .jekyll-assets-cache
|
||||||
|
- .jekyll-cache
|
||||||
- .sass-cache
|
- .sass-cache
|
||||||
- assets/js/plugins
|
- assets/js/plugins
|
||||||
- assets/js/_main.js
|
- assets/js/_main.js
|
||||||
|
@ -216,7 +217,8 @@ sass:
|
||||||
|
|
||||||
|
|
||||||
# Outputting
|
# Outputting
|
||||||
permalink: /:categories/:title/
|
permalink: # default value
|
||||||
|
# permalink: /:categories/:title/
|
||||||
paginate: 10 # amount of posts to show
|
paginate: 10 # amount of posts to show
|
||||||
paginate_path: /page:num/
|
paginate_path: /page:num/
|
||||||
timezone: # http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
timezone: # http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||||
|
|
Loading…
Reference in New Issue