summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgamerdonkey2020-05-24 12:17:57 -0500
committergamerdonkey2020-05-24 12:17:57 -0500
commit47127ae51e1360b36ecc11cf8e653ed16773f71a (patch)
treed04bc955dce0b6ffeeb6d15d2d755e03193da423
parentae83d2d605f76a3efec41d42651073a8d78ea21c (diff)
downloadgamerdonkey.com-blog-47127ae51e1360b36ecc11cf8e653ed16773f71a.tar.gz
gamerdonkey.com-blog-47127ae51e1360b36ecc11cf8e653ed16773f71a.tar.bz2
gamerdonkey.com-blog-47127ae51e1360b36ecc11cf8e653ed16773f71a.zip
Fixing site name and url, adding default status of 'draft' to new content.
-rw-r--r--pelicanconf.py12
1 files 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',
+}