Add old www redirects and fix impressum hosting sections

- Create redirect HTML files for all old www.moonweb.org URLs
- Root shortcuts (/start.html, /index2.html, etc.) redirect to /timecapsule/
- Content subdirectories (/partners/, /projects/, etc.) redirect to /timecapsule/
- Use .htm extension to prevent Eleventy template processing
- Fix impressum: buildbroken + 28k8 are on Cloudflare Pages, not IONOS
This commit is contained in:
2026-09-11 11:13:04 +02:00
parent 2b997c11d0
commit 7c3e29d282
21 changed files with 245 additions and 4 deletions
+25
View File
@@ -7,6 +7,31 @@ module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy({ "hub/robots.txt": "robots.txt" });
eleventyConfig.addPassthroughCopy({ "hub/stefan-koelle-foto.jpg": "stefan-koelle-foto.jpg" });
// Old www.moonweb.org redirects (root-level HTML shortcuts)
// .htm files are excluded from Eleventy processing, renamed to .html on output
eleventyConfig.addPassthroughCopy({ "hub/start.htm": "start.html" });
eleventyConfig.addPassthroughCopy({ "hub/index2.htm": "index2.html" });
eleventyConfig.addPassthroughCopy({ "hub/index3.htm": "index3.html" });
eleventyConfig.addPassthroughCopy({ "hub/new.htm": "new.html" });
eleventyConfig.addPassthroughCopy({ "hub/links.htm": "links.html" });
eleventyConfig.addPassthroughCopy({ "hub/infos.htm": "infos.html" });
eleventyConfig.addPassthroughCopy({ "hub/hardware.htm": "hardware.html" });
eleventyConfig.addPassthroughCopy({ "hub/users.htm": "users.html" });
// Old www.moonweb.org redirects (content subdirectories)
// .htm files are excluded from Eleventy processing, renamed to .html on output
eleventyConfig.addPassthroughCopy({ "hub/beginning/index.htm": "beginning/index.html" });
eleventyConfig.addPassthroughCopy({ "hub/projects/index.htm": "projects/index.html" });
eleventyConfig.addPassthroughCopy({ "hub/products/index.htm": "products/index.html" });
eleventyConfig.addPassthroughCopy({ "hub/acoustics/index.htm": "acoustics/index.html" });
eleventyConfig.addPassthroughCopy({ "hub/location/index.htm": "location/index.html" });
eleventyConfig.addPassthroughCopy({ "hub/background/index.htm": "background/index.html" });
eleventyConfig.addPassthroughCopy({ "hub/partners/index.htm": "partners/index.html" });
eleventyConfig.addPassthroughCopy({ "hub/contact/index.htm": "contact/index.html" });
eleventyConfig.addPassthroughCopy({ "hub/network/index.htm": "network/index.html" });
eleventyConfig.addPassthroughCopy({ "hub/stefan/index.htm": "stefan/index.html" });
eleventyConfig.addPassthroughCopy({ "hub/legal-notice/index.htm": "legal-notice/index.html" });
return {
dir: {
input: "hub",