From 47127ae51e1360b36ecc11cf8e653ed16773f71a Mon Sep 17 00:00:00 2001 From: gamerdonkey Date: Sun, 24 May 2020 12:17:57 -0500 Subject: Fixing site name and url, adding default status of 'draft' to new content. --- pelicanconf.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pelicanconf.py b/pelicanconf.py index c5f1bd9..3d01167 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -3,8 +3,8 @@ from __future__ import unicode_literals AUTHOR = 'gamerdonkey' -SITENAME = 'Projects and Thoughts' -SITEURL = '' +SITENAME = 'gamerdonkey' +SITEURL = 'https://gamerdonkey.com' PATH = 'content' @@ -34,6 +34,12 @@ DEFAULT_PAGINATION = 20 # Uncomment following line if you want document-relative URLs when developing #RELATIVE_URLS = True -MENUITEMS = (('blog', SITEURL),) +# Menu Options +MENUITEMS = (('blog', SITEURL + '/'),) DISPLAY_PAGES_ON_MENU = True DISPLAY_CATEGORIES_ON_MENU = False + +# Content Options +DEFAULT_METADATA = { + 'status': 'draft', +} -- cgit v1.2.3