diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 199c9db..ad95af0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,3 +27,4 @@ jobs: projectName: sudomsg-com directory: dist/ gitHubToken: ${{ secrets.GITHUB_TOKEN }} + diff --git a/_data/metadata.js b/data/metadata.js similarity index 100% rename from _data/metadata.js rename to data/metadata.js diff --git a/eleventy.config.js b/eleventy.config.js index 5bb21ce..c6d7df3 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -25,7 +25,7 @@ export default async function(eleventyConfig) { name: "post" }, metadata: { - language: "en", + language: "en-GB", title: "Sudomsg", subtitle: "Messages from Root", base: "https://sudomsg.com/", @@ -109,7 +109,11 @@ export default async function(eleventyConfig) { markdownTemplateEngine: "njk", htmlTemplateEngine: "webc", dir: { - output: "dist" + output: "dist", + input: "src", + includes: "../includes", + data: "../data", + components: "components", } } } diff --git a/_includes/base.html b/includes/base.html similarity index 100% rename from _includes/base.html rename to includes/base.html diff --git a/_includes/main.css b/includes/main.css similarity index 100% rename from _includes/main.css rename to includes/main.css diff --git a/_includes/page.html b/includes/page.html similarity index 100% rename from _includes/page.html rename to includes/page.html diff --git a/_includes/post.html b/includes/post.html similarity index 100% rename from _includes/post.html rename to includes/post.html diff --git a/404.html b/src/404.html similarity index 100% rename from 404.html rename to src/404.html diff --git a/about.html b/src/about.html similarity index 100% rename from about.html rename to src/about.html diff --git a/index.html b/src/index.html similarity index 100% rename from index.html rename to src/index.html diff --git a/posts.html b/src/posts.html similarity index 100% rename from posts.html rename to src/posts.html diff --git a/posts/posts.11tydata.js b/src/posts/posts.11tydata.js similarity index 100% rename from posts/posts.11tydata.js rename to src/posts/posts.11tydata.js diff --git a/public/_headers b/src/public/_headers similarity index 100% rename from public/_headers rename to src/public/_headers diff --git a/public/_redirects b/src/public/_redirects similarity index 100% rename from public/_redirects rename to src/public/_redirects diff --git a/public/favicon.svg b/src/public/favicon.svg similarity index 100% rename from public/favicon.svg rename to src/public/favicon.svg diff --git a/public/robots.txt b/src/public/robots.txt similarity index 100% rename from public/robots.txt rename to src/public/robots.txt diff --git a/sitemap.xml.njk b/src/sitemap.xml.njk similarity index 100% rename from sitemap.xml.njk rename to src/sitemap.xml.njk