From 4dd2edb72009290f2c6d4624d9f7f3a30bd624b4 Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Tue, 7 Mar 2023 17:16:10 +0100 Subject: [PATCH] Set SITEURL --- pelicanconf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pelicanconf.py b/pelicanconf.py index 83f75cb..7c63365 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -7,7 +7,9 @@ sys.path.append(os.curdir) AUTHOR = 'LEdoian' SITENAME = 'LEdoian' -SITEURL = '' + +SITEURL = 'https://blog.ledoian.cz/' +RELATIVE_URLS = True PATH = 'content' THEME = 'test-theme' @@ -32,7 +34,5 @@ SOCIAL = (('Mail', 'mailto:blog@pokemon.ledoian.cz'), DEFAULT_PAGINATION = False -# Uncomment following line if you want document-relative URLs when developing -RELATIVE_URLS = True DELETE_OUTPUT_DIRECTORY = True