From 8bb5361403cbda0c79d5289b4b87cf372650ec24 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 20 Jun 2023 10:30:51 -0700 Subject: [PATCH] chore: more reorganization --- .eleventy.js | 2 -- netlify.toml | 7 ++++++- src/feeds/gpc.liquid | 2 +- src/{contribute.json => meta/contribute.liquid} | 5 +++++ src/meta/robots.liquid | 9 +++++++++ src/{well-known => meta}/security.liquid | 0 src/{well-known => meta}/traffic-advice.liquid | 0 src/{well-known => meta}/webfinger.liquid | 0 8 files changed, 21 insertions(+), 4 deletions(-) rename src/{contribute.json => meta/contribute.liquid} (72%) create mode 100644 src/meta/robots.liquid rename src/{well-known => meta}/security.liquid (100%) rename src/{well-known => meta}/traffic-advice.liquid (100%) rename src/{well-known => meta}/webfinger.liquid (100%) diff --git a/.eleventy.js b/.eleventy.js index 75cb5d84..63e3bdcf 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -43,8 +43,6 @@ module.exports = function (eleventyConfig) { // passthrough eleventyConfig.addPassthroughCopy('src/assets') - eleventyConfig.addPassthroughCopy('src/robots.txt') - eleventyConfig.addPassthroughCopy('src/contribute.json') eleventyConfig.addPassthroughCopy('_redirects') // shortcodes diff --git a/netlify.toml b/netlify.toml index 5a8dc8f3..aca6fc93 100644 --- a/netlify.toml +++ b/netlify.toml @@ -68,4 +68,9 @@ for = "/.well-known/gpc.json" [[headers]] for = "/.well-known/traffic-advice" [headers.values] - Content-Type = "application/trafficadvice+json" \ No newline at end of file + Content-Type = "application/trafficadvice+json" + +[[headers]] +for = "/contribute.json" + [headers.values] + Content-Type = "application/json" \ No newline at end of file diff --git a/src/feeds/gpc.liquid b/src/feeds/gpc.liquid index 52070399..f3ffb55c 100644 --- a/src/feeds/gpc.liquid +++ b/src/feeds/gpc.liquid @@ -1,5 +1,5 @@ --- -permalink: '.well-known/gpc.json' +permalink: '.meta/gpc.json' eleventyExcludeFromCollections: true dynamicPermalink: false --- diff --git a/src/contribute.json b/src/meta/contribute.liquid similarity index 72% rename from src/contribute.json rename to src/meta/contribute.liquid index d5eaea42..40340584 100644 --- a/src/contribute.json +++ b/src/meta/contribute.liquid @@ -1,3 +1,8 @@ +--- +permalink: '/contribute.json' +eleventyExcludeFromCollections: true +dynamicPermalink: false +--- { "name": "coryd.dev", "description": "Cory Dransfeldt's personal blog.", diff --git a/src/meta/robots.liquid b/src/meta/robots.liquid new file mode 100644 index 00000000..24508bbc --- /dev/null +++ b/src/meta/robots.liquid @@ -0,0 +1,9 @@ +--- +permalink: '.well-known/robots.txt' +eleventyExcludeFromCollections: true +dynamicPermalink: false +--- +Sitemap: https://coryd.dev/sitemap.xml + +User-agent: * +Disallow: diff --git a/src/well-known/security.liquid b/src/meta/security.liquid similarity index 100% rename from src/well-known/security.liquid rename to src/meta/security.liquid diff --git a/src/well-known/traffic-advice.liquid b/src/meta/traffic-advice.liquid similarity index 100% rename from src/well-known/traffic-advice.liquid rename to src/meta/traffic-advice.liquid diff --git a/src/well-known/webfinger.liquid b/src/meta/webfinger.liquid similarity index 100% rename from src/well-known/webfinger.liquid rename to src/meta/webfinger.liquid