From 6aeacf8a0e3185d94aeaef70121aafa66c28a165 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Sat, 25 May 2019 23:11:50 +0200 Subject: [PATCH] Fix publishconf and pelicanconf --- pelicanconf.py | 4 ++-- publishconf.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pelicanconf.py b/pelicanconf.py index cf83361..040fb1b 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -4,7 +4,7 @@ from __future__ import unicode_literals AUTHOR = 'Georg Krause' SITENAME = 'Loopp' -SITEURL = 'https://loopp.soundship.de' +SITEURL = 'http://localhost:8000' THEME = 'themes/Loopp' INDEX_SAVE_AS = 'blog.html' @@ -32,7 +32,7 @@ SOCIAL = (('You can add links in your config file', '#'), DEFAULT_PAGINATION = 10 # Uncomment following line if you want document-relative URLs when developing -#RELATIVE_URLS = True +RELATIVE_URLS = True # Landing Page Content diff --git a/publishconf.py b/publishconf.py index b04b98e..77a39cb 100644 --- a/publishconf.py +++ b/publishconf.py @@ -11,7 +11,7 @@ sys.path.append(os.curdir) from pelicanconf import * # If your site is available via HTTPS, make sure SITEURL begins with https:// -SITEURL = '' +SITEURL = 'https://loopp.soundship.de' RELATIVE_URLS = False #FEED_ALL_ATOM = 'feeds/all.atom.xml'