From 761e989269bb710bc0849b5d4ffe48db20475857 Mon Sep 17 00:00:00 2001 From: "mb@mb" Date: Tue, 28 Aug 2018 23:55:37 +0200 Subject: [PATCH] siteurl on workmode ('/') + article reversed sort added + relative urls enabled --- pelicanconf.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pelicanconf.py b/pelicanconf.py index d58a658..10b3da1 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -4,8 +4,9 @@ from __future__ import unicode_literals AUTHOR = 'rra' SITENAME = 'Wtt�F' -SITEURL = 'https://varia.zone/wttf/' -SUBTITLE="how arts and design can contribute to open source and federated social media" +# SITEURL = 'https://varia.zone/wttf/' +SITEURL = '' +SUBTITLE="How arts and design can contribute to open source and federated social media." FEATURED_IMAGE = SITEURL + 'images/fi.jpg' @@ -36,7 +37,8 @@ AUTHOR_FEED_RSS = None PLUGIN_PATHS = ["plugins"] PLUGINS = ['summary', 'image_captions'] +ARTICLE_ORDER_BY = 'reversed-date' DEFAULT_PAGINATION = 50 # Uncomment following line if you want document-relative URLs when developing -#RELATIVE_URLS = True +RELATIVE_URLS = True