From 144939b978d7595c15c61e90cce3dd79db8683e9 Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Fri, 28 Aug 2015 18:33:27 +0200 Subject: [PATCH] Update config.php.template --- config/config.php.template | 49 ++++++++++++++++++++++---------------- 1 file changed, 28 insertions(+), 21 deletions(-) diff --git a/config/config.php.template b/config/config.php.template index 5d186b1..c78eec5 100644 --- a/config/config.php.template +++ b/config/config.php.template @@ -1,18 +1,19 @@ false, // To enable Twig caching change this to CACHE_DIR -// 'autoescape' => false, // Autoescape Twig vars -// 'debug' => false // Enable Twig debug +// 'cache' => false, // To enable Twig caching change this to CACHE_DIR +// 'autoescape' => false, // Autoescape Twig vars +// 'debug' => false // Enable Twig debug // ); /* * CONTENT */ -// $config['date_format'] = '%D %T'; // Set the PHP date format as described here: http://php.net/manual/en/function.strftime.php -// $config['pages_order_by'] = 'alpha'; // Order pages by "alpha" or "date" -// $config['pages_order'] = 'asc'; // Order pages "asc" or "desc" -// $config['excerpt_length'] = 50; // The pages excerpt length (in words) -// $config['content_dir'] = 'content-sample/'; // Content directory +// $config['date_format'] = '%D %T'; // Set the PHP date format as described here: http://php.net/manual/en/function.strftime.php +// $config['pages_order_by'] = 'alpha'; // Order pages by "alpha" or "date" +// $config['pages_order'] = 'asc'; // Order pages "asc" or "desc" +// $config['content_dir'] = 'content-sample/'; // Content directory +// $config['content_ext'] = '.md'; // File extension of content files to serve /* * TIMEZONE */ -// date_default_timezone_set('UTC'); // Timezone may be reqired by your php install +// $config['timezone'] = 'UTC'; // Timezone may be required by your php install + +/* + * PLUGINS + */ +// $config['DummyPlugin.enabled'] = false; // Force DummyPlugin to be disabled /* * CUSTOM */ -// $config['custom_setting'] = 'Hello'; // Can be accessed by {{ config.custom_setting }} in a theme +// $config['custom_setting'] = 'Hello'; // Can be accessed by {{ config.custom_setting }} in a theme -// Keep this line +// DO NOT REMOVE THIS LINE return $config;