From 92fe7c5c2487381da8238cff2eab98414fb9acc4 Mon Sep 17 00:00:00 2001 From: L3D Date: Mon, 15 Feb 2021 00:35:18 +0100 Subject: [PATCH 1/2] Add sitemap.xml generator --- content/sitemap.xml/contents.lr | 4 ++++ templates/sitemap.xml | 9 +++++++++ 2 files changed, 13 insertions(+) create mode 100644 content/sitemap.xml/contents.lr create mode 100644 templates/sitemap.xml diff --git a/content/sitemap.xml/contents.lr b/content/sitemap.xml/contents.lr new file mode 100644 index 00000000..ffd5fad0 --- /dev/null +++ b/content/sitemap.xml/contents.lr @@ -0,0 +1,4 @@ +_template: sitemap.xml +--- +_model: none +_discoverable: no diff --git a/templates/sitemap.xml b/templates/sitemap.xml new file mode 100644 index 00000000..0c524e8d --- /dev/null +++ b/templates/sitemap.xml @@ -0,0 +1,9 @@ + + + {%- for page in [site.root] if page != this recursive %} + {%- if not page.hide_from_global_index %} + {{ page|url(external=true) }} + {{- loop(page.children) }} + {%- endif %} + {%- endfor %} + From 5efaa7b4070e0a1903a9430925afa598b663f627 Mon Sep 17 00:00:00 2001 From: L3D Date: Tue, 16 Feb 2021 21:36:01 +0100 Subject: [PATCH 2/2] ADD MIT License --- LICENCE | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 LICENCE diff --git a/LICENCE b/LICENCE new file mode 100644 index 00000000..dfdaa286 --- /dev/null +++ b/LICENCE @@ -0,0 +1,22 @@ +MIT License + +Copyright (c) 2021 WTF Kooperative eG and Members +Copyright (c) 2021 L3D + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.