diff options
| author | gamerdonkey | 2020-05-24 12:17:57 -0500 |
|---|---|---|
| committer | gamerdonkey | 2020-05-24 12:17:57 -0500 |
| commit | 47127ae51e1360b36ecc11cf8e653ed16773f71a (patch) | |
| tree | d04bc955dce0b6ffeeb6d15d2d755e03193da423 | |
| parent | ae83d2d605f76a3efec41d42651073a8d78ea21c (diff) | |
| download | gamerdonkey.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.py | 12 |
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', +} |
