diff --git a/Gemfile b/Gemfile index 08c5612..65e4d63 100644 --- a/Gemfile +++ b/Gemfile @@ -5,4 +5,5 @@ gem 'jekyll', '3.8.5' group :jekyll_plugins do gem "jekyll-paginate-v2", "~> 1.7" + gem 'jekyll-sitemap' end \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 144495b..5b5c750 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -31,6 +31,8 @@ GEM jekyll (~> 3.0) jekyll-sass-converter (1.5.2) sass (~> 3.4) + jekyll-sitemap (1.2.0) + jekyll (~> 3.3) jekyll-watch (2.1.2) listen (~> 3.0) kramdown (1.17.0) @@ -61,6 +63,7 @@ PLATFORMS DEPENDENCIES jekyll (= 3.8.5) jekyll-paginate-v2 (~> 1.7) + jekyll-sitemap BUNDLED WITH 2.0.1 diff --git a/_config.yml b/_config.yml index d1eff17..4b1fa03 100644 --- a/_config.yml +++ b/_config.yml @@ -1,3 +1,4 @@ +url: "https://basspistol.com" # the base hostname & protocol for your site permalink: /:categories/:year/:month/:day/:title/ exclude: [".rvmrc", ".rbenv-version", "README.md", "Rakefile", "changelog.md", "*.*~", "color_chart.txt", Gemfile, Gemfile.lock] @@ -33,4 +34,8 @@ collections: tracks: output: true staff_members: - _hide_content: true \ No newline at end of file + _hide_content: + +plugins: + - jekyll-paginate-v2 + - jekyll-sitemap \ No newline at end of file