Skip to content
Snippets Groups Projects
Verified Commit 8738ce27 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Remove useless string formatting for absolute URLs

parent ba788719
No related branches found
No related tags found
No related merge requests found
......@@ -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+"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment