summaryrefslogtreecommitdiff
path: root/config.php.sample
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-07-30 17:05:35 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-07-30 17:05:35 -0400
commit854d24b05a052bffe21f112b705d58c9abf126a9 (patch)
tree01279c846caa878b48680541f19d289f716c5b02 /config.php.sample
parent421ee4297ef5055bdd190fe2bd62cdc22b41c82b (diff)
Site-wide design configuration
I added some code so that the site-wide design can be set, using the configuration interface. I also moved the configuration option from $config['site']['design']['background'] to just $config['design']['background'], but the old syntax will still work. Conflicts: config.php.sample
Diffstat (limited to 'config.php.sample')
-rw-r--r--config.php.sample8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.php.sample b/config.php.sample
index 57aa6a6c8..c27645ff8 100644
--- a/config.php.sample
+++ b/config.php.sample
@@ -18,6 +18,14 @@ $config['site']['server'] = 'localhost';
$config['site']['path'] = 'laconica';
// $config['site']['fancy'] = false;
// $config['site']['theme'] = 'default';
+// Sets the site's default design values
+// $config['design']['backgroundcolor'] = '#F0F2F5';
+// $config['design']['contentcolor'] = '#FFFFFF';
+// $config['design']['sidebarcolor'] = '#CEE1E9';
+// $config['design']['textcolor'] = '#000000';
+// $config['design']['linkcolor'] = '#002E6E';
+// $config['design']['backgroundimage'] = null;
+// $config['design']['disposition'] = 1;
// To enable the built-in mobile style sheet, defaults to false.
// $config['site']['mobile'] = true;
// For contact email, defaults to $_SERVER["SERVER_ADMIN"]