diff --git a/_config.yml b/_config.yml index a0faf64784..c200ae3656 100644 --- a/_config.yml +++ b/_config.yml @@ -2,6 +2,8 @@ exclude: [".github", "Gemfile", "Gemfile.lock", "build.sh", "build-and-serve.sh", "README.md"] permalink: pretty +baseurl: "https://godotengine.org" + collections_dir: collections collections: article: diff --git a/_layouts/default.html b/_layouts/default.html index cf437d4df7..8bfb0ce2c3 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -8,12 +8,12 @@ - + - + {{ page.title | default: "Godot Engine" }} diff --git a/pages/rss.xml b/pages/rss.xml index 4f8fce2407..e07d5c15c1 100644 --- a/pages/rss.xml +++ b/pages/rss.xml @@ -7,15 +7,15 @@ permalink: /rss.xml Godot Engine Official - https://godotengine.org + {{ site.baseurl }} Godot is a 2D and 3D free and open source game engine developed by a community of contributors. It provides a huge set of common tools, so you can just focus on making your game without reinventing the wheel. - + {% assign latest_posts = site.article | sort:"date" | reverse %} {% for post in latest_posts limit:24 %} {{ post.title }} - https://godotengine.org{{ post.url }} + {{ site.baseurl }}{{ post.url }} {{ post.content | xml_escape }} {{ post.date | date: "%a, %d %b %Y %X +0000" }}