From b657d271af0d9c6256da53161fdc119de5472525 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Mar 2020 13:03:40 +0200 Subject: Use https for SITEURL Without this, the stylesheets were broken because of mixed content. I am not sure how to make this work with only http, but I suppose it doesn't matter much these days anyway. --- pelicanconf.py | 2 +- publishconf.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pelicanconf.py b/pelicanconf.py index a5fb9d4..11a5037 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -7,7 +7,7 @@ SITENAME = u'LV2' SITELOGO = 'images/logo.svg' SITELOGO_WIDTH = '26.194574em' SITELOGO_HEIGHT = '24.525000em' -SITEURL = 'http://lv2plug.in' +SITEURL = 'https://lv2plug.in' PATH = 'content' diff --git a/publishconf.py b/publishconf.py index aca0ffc..1576ef7 100644 --- a/publishconf.py +++ b/publishconf.py @@ -10,7 +10,7 @@ import sys sys.path.append(os.curdir) from pelicanconf import * -SITEURL = 'http://lv2plug.in' +SITEURL = 'https://lv2plug.in' RELATIVE_URLS = False FEED_ALL_ATOM = 'feeds/all.atom.xml' -- cgit v1.2.1