diff options
author | David Robillard <d@drobilla.net> | 2020-03-29 13:03:40 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-03-29 13:03:40 +0200 |
commit | b657d271af0d9c6256da53161fdc119de5472525 (patch) | |
tree | daf98aa60febd0472b5bc56d7175ef787fd09d2b | |
parent | b664b4bcb48e0872821a5dfa8336c667a2397d03 (diff) | |
download | lv2site-b657d271af0d9c6256da53161fdc119de5472525.tar.xz |
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.
-rw-r--r-- | pelicanconf.py | 2 | ||||
-rw-r--r-- | 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' |