mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-21 17:47:10 +00:00
Replace sitemap.xml with official Jekyll Sitemap gem
This commit is contained in:
parent
cec6aa75ed
commit
2ee8c7378d
4 changed files with 7 additions and 32 deletions
1
404.md
1
404.md
|
@ -2,6 +2,7 @@
|
||||||
layout: page
|
layout: page
|
||||||
title: "Page Not Found"
|
title: "Page Not Found"
|
||||||
description: "Page not found. Your pixels are in another canvas."
|
description: "Page not found. Your pixels are in another canvas."
|
||||||
|
sitemap: false
|
||||||
---
|
---
|
||||||
|
|
||||||
Sorry, but the page you were trying to view does not exist --- perhaps you can try searching for it below.
|
Sorry, but the page you were trying to view does not exist --- perhaps you can try searching for it below.
|
||||||
|
|
7
Gemfile
7
Gemfile
|
@ -1,12 +1,7 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
gem 'jekyll'
|
gem 'jekyll'
|
||||||
gem 'kramdown'
|
gem 'jekyll-sitemap'
|
||||||
gem 'coderay'
|
|
||||||
gem 'rake'
|
|
||||||
gem 'thor'
|
|
||||||
gem 'activesupport'
|
|
||||||
gem 'stringex'
|
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
gem 'html-proofer'
|
gem 'html-proofer'
|
||||||
|
|
10
_config.yml
10
_config.yml
|
@ -43,13 +43,13 @@ links:
|
||||||
url: http://mademistakes.com
|
url: http://mademistakes.com
|
||||||
external: true
|
external: true
|
||||||
|
|
||||||
# http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
|
||||||
timezone: America/New_York
|
|
||||||
future: true
|
future: true
|
||||||
pygments: true
|
highlighter: pygments
|
||||||
#highlighter: pygments
|
|
||||||
markdown: kramdown
|
markdown: kramdown
|
||||||
|
|
||||||
|
gems:
|
||||||
|
- jekyll-sitemap
|
||||||
|
|
||||||
# https://github.com/mojombo/jekyll/wiki/Permalinks
|
# https://github.com/mojombo/jekyll/wiki/Permalinks
|
||||||
permalink: /:categories/:title/
|
permalink: /:categories/:title/
|
||||||
|
|
||||||
|
@ -68,4 +68,4 @@ kramdown:
|
||||||
coderay_css: class
|
coderay_css: class
|
||||||
|
|
||||||
include: [".htaccess"]
|
include: [".htaccess"]
|
||||||
exclude: ["lib", "config.rb", "Gemfile", "Capfile", "README.md", "LICENSE", "Gemfile.lock", "config", "log", "Rakefile", "Rakefile.rb", "tmp", "less", "*.sublime-project", "*.sublime-workspace", "test", "spec", "Gruntfile.js", "package.json", "node_modules", "vendor"]
|
exclude: ["lib", "config.rb", "Gemfile", "Capfile", "README.md", "LICENSE", "Gemfile.lock", "config", "log", "Rakefile", "Rakefile.rb", "tmp", "less", "*.sublime-project", "*.sublime-workspace", "test", "spec", "Gruntfile.js", "package.json", "node_modules", "vendor"]
|
21
sitemap.xml
21
sitemap.xml
|
@ -1,21 +0,0 @@
|
||||||
---
|
|
||||||
layout: nil
|
|
||||||
---
|
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
||||||
<url>
|
|
||||||
<loc>{{ site.url }}</loc>
|
|
||||||
</url>
|
|
||||||
|
|
||||||
{% for page in site.pages %}
|
|
||||||
<url>
|
|
||||||
<loc>{{ site.url }}{{ page.url }}</loc>
|
|
||||||
</url>
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
{% for post in site.posts %}
|
|
||||||
<url>
|
|
||||||
<loc>{{ site.url }}{{ post.url }}</loc>
|
|
||||||
</url>
|
|
||||||
{% endfor %}
|
|
||||||
</urlset>
|
|
Loading…
Reference in a new issue