Fix CSS path resolution

- Move style.scss to dox-theme/assets/css/ to match live site path
- Update default.html layout to reference correct CSS path
- Update GitHub Actions workflow to verify correct output path
- Backup original style.scss as style.scss.backup
This commit is contained in:
Dennis Dornon 2025-04-02 13:08:25 -04:00
parent ab1a933ece
commit 7020375f22
4 changed files with 151 additions and 2 deletions

View file

@ -133,7 +133,7 @@ jobs:
ls -laR _site/dox-theme/assets/js/ || echo "Directory _site/dox-theme/assets/js/ not found"
echo "--- Compiled CSS Content ---"
echo "style.css contents:"
cat _site/assets/css/style.css || echo "style.css not found!"
cat _site/dox-theme/assets/css/style.css || echo "style.css not found!"
# Deploy to GitHub Pages
- name: Deploy to GitHub Pages