From df53218d7e411bcdfed583b9a67c45a5c629ba8d Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Mon, 30 Oct 2023 12:55:45 +0100 Subject: [PATCH] conf: don't include trailing slash in SITEURL fixes 1 warning. --- pelicanconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelicanconf.py b/pelicanconf.py index 7ad9c46..4318884 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -10,7 +10,7 @@ AUTHOR = "LEdoian" SITENAME = "LEdoian's Blog" SITE_DESCRIPTION = "My personal webpage" # NOTE: Theme-specific -SITEURL = 'https://blog.ledoian.cz/' +SITEURL = 'https://blog.ledoian.cz' RELATIVE_URLS = True PATH = 'content'