From 8738ce275d149adbfb8ecc40602b6a12814661f2 Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Thu, 19 Aug 2021 12:11:47 +0200 Subject: [PATCH] Remove useless string formatting for absolute URLs --- pelican_theme_teckids/pelicanconf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pelican_theme_teckids/pelicanconf.py b/pelican_theme_teckids/pelicanconf.py index 11b3ada..eab9d0e 100644 --- a/pelican_theme_teckids/pelicanconf.py +++ b/pelican_theme_teckids/pelicanconf.py @@ -3,8 +3,8 @@ import os AUTHOR = "Teckids e.V." SITEURL = "" -SITELOGO = "{}/images/logo.png".format(SITEURL) -FAVICON = "{}/images/favicon.png".format(SITEURL) +SITELOGO = "/images/logo.png" +FAVICON = "/images/favicon.png" # Uncomment following line if you want document-relative URLs when developing RELATIVE_URLS = True @@ -72,7 +72,7 @@ PARTNERS = [ ("Free Software Foundation Europe", "/theme/images/partners/fsfe.png", "https://fsfe.org"), ] -CUSTOM_STYLESHEET = "{}/static/css/custom.css".format(SITEURL) +CUSTOM_STYLESHEET = "/static/css/custom.css" LICENCE_DEFAULT = "CC-BY-SA 4.0+" -- GitLab