diff --git a/.github/workflows/hugo.yaml b/.github/workflows/hugo.yaml
index 3511c3b..366dbb8 100644
--- a/.github/workflows/hugo.yaml
+++ b/.github/workflows/hugo.yaml
@@ -59,7 +59,10 @@ jobs:
hugo \
--gc \
--minify \
- --baseURL "${{ steps.pages.outputs.base_url }}/"
+ --baseURL "${{ steps.pages.outputs.base_url }}/"
+ - name: Remove 'powered by...' from all footers
+ run: find public -type f -name '*.html' -exec perl -0777 -i -pe 's|||gs' {} \;
+
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
diff --git a/hugo.toml b/hugo.toml
index 8e38f69..4168600 100644
--- a/hugo.toml
+++ b/hugo.toml
@@ -2,3 +2,5 @@ baseURL = 'https://vlindhol.github.io/'
languageCode = 'en-us'
title = 'Lindholm Software freelance'
theme = 'PaperMod'
+copyright = '© Ville Lindholm'
+disableHugoGeneratorInject = true