From 46e3c31da23e7f26d6c91d23e32d0f6981a1c4ac Mon Sep 17 00:00:00 2001 From: Will Faught Date: Fri, 7 Feb 2025 23:45:23 -0800 Subject: [PATCH] Remove blank target from default credit --- README.md | 2 +- layouts/partials/paige/site-footer.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1296e9da..f60cee90 100644 --- a/README.md +++ b/README.md @@ -174,7 +174,7 @@ There is a single parameter object with sensible defaults that can be overridden [paige] color = "#0d6efd" # Bootstrap primary color and theme color for Safari and Windows color_scheme = "auto" # Must be "auto", "dark", or "light" -credit = 'Paige Theme' +credit = 'Paige Theme' date_format = ":date_long" # Hugo date format description = "" # Site description. Appears above the menu, below the site title, if set. edit = "" # File edit URL. Example: "https://github.com/account/project/edit/master/content/%s". diff --git a/layouts/partials/paige/site-footer.html b/layouts/partials/paige/site-footer.html index e663fa95..9a284610 100644 --- a/layouts/partials/paige/site-footer.html +++ b/layouts/partials/paige/site-footer.html @@ -10,7 +10,7 @@ {{ if $credit }} {{ $credit = markdownify $credit }} {{ else }} - {{ $credit = `Paige Theme` | safeHTML }} + {{ $credit = `Paige Theme` | safeHTML }} {{ end }} {{ $credit = $credit | and ($page.Param "paige.site.disable_credit" | not) }}