From fb994b1399bc2ca15e6cb046dbbacefb9fd31aca Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Mon, 28 Oct 2013 15:52:09 -0700 Subject: [PATCH] Add content dir to default settings file template This adds a line to the settings file generated by pelican-quickstart that ensures the automatically-generated "content" directory is specified in said settings file. Fixes #1116 --- pelican/tools/templates/pelicanconf.py.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pelican/tools/templates/pelicanconf.py.in b/pelican/tools/templates/pelicanconf.py.in index 5d96051d..00a7ec84 100644 --- a/pelican/tools/templates/pelicanconf.py.in +++ b/pelican/tools/templates/pelicanconf.py.in @@ -6,6 +6,8 @@ AUTHOR = $author SITENAME = $sitename SITEURL = '' +PATH = 'content' + TIMEZONE = 'Europe/Paris' DEFAULT_LANG = $lang