X-Git-Url: http://git.subgeniuskitty.com/cmless/.git/blobdiff_plain/d955cfad358f87bc92b6f3cb2d1741e5dbb61cc5..fafb94d2d7673e4fade6058310f327beaeec927f:/bin/config.py diff --git a/bin/config.py b/bin/config.py index 6d9e90b..83d9d32 100644 --- a/bin/config.py +++ b/bin/config.py @@ -1,6 +1,13 @@ # (c) 2017 Aaron Taylor # See LICENSE file for copyright and license details. +##### +# Site Configuration Options +##### + +# Site name. For example, "Microsoft" or "Bob's Hardware". +site_name = "Site Name" + ##### # CMless Configuration Options ##### @@ -9,6 +16,12 @@ # the CMless code. site_data_prefix = "../site/data" +# Default page name. This specifies the filename to serve (if exists) when a +# directory is specified as the REQUEST_URI. If is equivalent to Apache's +# DirectoryIndex configuration option. No file extension is necessary as the +# markup_file_extension configuration option handles that information. +default_page = "index" + # The prefix to the website template relative to the bin/ folder which contains # the CMless code. site_template_prefix = "../site/template"