diff --git a/_config.yml b/_config.yml index ae59ddf..47549f4 100644 --- a/_config.yml +++ b/_config.yml @@ -6,7 +6,7 @@ description: >- # this means to ignore newlines until "baseurl:" an easy way to find things to improve on OSM, be it in their own town or city, or anywhere in the world! baseurl: "" # the subpath of your site, e.g. /blog -url: "" # the base hostname & protocol for your site, e.g. http://example.com +url: "https://blog.maproulette.org" # the base hostname & protocol for your site permalink: "/:year/:month/:day/:title/" show_excerpts: true @@ -27,7 +27,7 @@ defaults: layout: "post" feed: - path: /feed + path: /feed/ picture: output: assets/ diff --git a/_plugins/rename_feed.rb b/_plugins/rename_feed.rb new file mode 100644 index 0000000..ac29b3d --- /dev/null +++ b/_plugins/rename_feed.rb @@ -0,0 +1,4 @@ +Jekyll::Hooks.register :site, :post_write do |site| + dest = site.config["destination"] + File.rename "#{dest}/feed/index", "#{dest}/feed/index.atom" +end