diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-05-23 18:13:40 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-05-23 18:13:40 +0200 |
commit | 554a358539e2705d4394701778de9dffa8b6a815 (patch) | |
tree | a286d33fceffbab2c572e2111c44c3fb7089b8a4 /doc | |
parent | 3e3c070b31df956daf7dbe47a510733b22d2ceef (diff) | |
download | semanticscuttle-554a358539e2705d4394701778de9dffa8b6a815.tar.gz semanticscuttle-554a358539e2705d4394701778de9dffa8b6a815.tar.bz2 |
updates theme documentation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/themes.rst | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/doc/themes.rst b/doc/themes.rst index 72a4c8d..7c40ef2 100644 --- a/doc/themes.rst +++ b/doc/themes.rst @@ -7,26 +7,33 @@ modify the visual appearance. Changing the current theme ========================== -In ``data/config.php``, set your theme like this: +In ``data/config.php``, set your theme like this: :: $theme = 'darkmood'; -Changeable files -================ +Creating your own theme +======================= -CSS file --------- -FIXME, missing at the moment +CSS and image files +------------------- +Since both file types need to be accessible via the web server directly, +they are located in the ``www/`` folder: :: + + www/themes/$themename/ + +The main CSS file that automatically gets included is :: + + www/themes/$themename/scuttle.css Template files -------------- -The templates of the default file are located in +The templates of the default file are located in :: data/templates/default/ -You may put your theme template files into +You may put your theme template files into :: data/templates/$themename/ |