diff options
author | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2018-01-28 15:46:49 +0100 |
---|---|---|
committer | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2018-01-28 15:46:49 +0100 |
commit | f269bd64ef1a06950f06028f5b952f99b2b9257e (patch) | |
tree | 921d2604886dd3749f0b9bdde7af3ff7f535554d | |
parent | 7a48310665ff95082022672658194caa7ffa693d (diff) |
Remove custom bootstrap theme config.
-rw-r--r-- | docs/configuration.md | 6 | ||||
-rw-r--r-- | includes/config.defaults.php | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/docs/configuration.md b/docs/configuration.md index 849e39a..8ef9df5 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -21,12 +21,6 @@ that are set if the configuration is not overriden. ### Frontpage ```php -$config['frontpage']['custom_bootstrap_theme'] = false; -``` -Defines the path to a custom Bootstrap theme. If set to false, disable the -custom Bootstrap theme. - -```php $config['frontpage']['css'] = 'css/style.css'; ``` Defines the path to the CSS file to use. diff --git a/includes/config.defaults.php b/includes/config.defaults.php index 47075c0..35b0e2a 100644 --- a/includes/config.defaults.php +++ b/includes/config.defaults.php @@ -52,8 +52,6 @@ $config = array( // Frontpage configuration 'frontpage' => array( - // Custom Bootstrap theme - 'custom_bootstrap_theme' => false, // CSS to use 'css' => 'css/style.css', // Title |