From 8ef3e29a739e0f0758ca1c3a76fd87ad4bba3519 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Tue, 27 Feb 2024 14:33:55 -0500 Subject: [PATCH] Move static content into dedicated subpath to support automated deployments --- {css => content/css}/style.css | 0 index.html => content/index.html | 0 {js => content/js}/custom.js | 0 robots.txt => content/robots.txt | 0 sitemap.xml => content/sitemap.xml | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename {css => content/css}/style.css (100%) rename index.html => content/index.html (100%) rename {js => content/js}/custom.js (100%) rename robots.txt => content/robots.txt (100%) rename sitemap.xml => content/sitemap.xml (100%) diff --git a/css/style.css b/content/css/style.css similarity index 100% rename from css/style.css rename to content/css/style.css diff --git a/index.html b/content/index.html similarity index 100% rename from index.html rename to content/index.html diff --git a/js/custom.js b/content/js/custom.js similarity index 100% rename from js/custom.js rename to content/js/custom.js diff --git a/robots.txt b/content/robots.txt similarity index 100% rename from robots.txt rename to content/robots.txt diff --git a/sitemap.xml b/content/sitemap.xml similarity index 100% rename from sitemap.xml rename to content/sitemap.xml