diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-04-12 02:08:55 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-04-12 02:08:55 +0000 |
commit | 030477b02a1d00d4957bed88ba221c06e81abff3 (patch) | |
tree | 1582ac599213ca764c25357d9600dcb80529edba /config.php.sample | |
parent | 1f33df4715f4293787beb5b64721df6db3a2083c (diff) |
Separation of themes (i.e., layout, typography) and skins (i.e., background
images, colours).
A theme can have multiple skins.
Majority of the changes in this commit are due to restructuring the
path/files for themes and skins.
Both theme and skin will be set to 'default' if not set in
config.php.
This commit also allows each instance of this software to create
its own theme without having to override any style from the default
distribution.
Added Cloudy theme.
Diffstat (limited to 'config.php.sample')
-rw-r--r-- | config.php.sample | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.php.sample b/config.php.sample index fa3528835..6601acc7e 100644 --- a/config.php.sample +++ b/config.php.sample @@ -18,6 +18,7 @@ $config['site']['server'] = 'localhost'; $config['site']['path'] = 'laconica'; #$config['site']['fancy'] = false; #$config['site']['theme'] = 'default'; +#$config['site']['skin'] = 'default'; #To enable the built-in mobile style sheet, defaults to false. #$config['site']['mobile'] = true; #For contact email, defaults to $_SERVER["SERVER_ADMIN"] |