diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-05-25 17:12:59 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-05-25 17:12:59 +0200 |
commit | 49fa996cd7be1b0f7e3b43dc7c622c2f6a901e76 (patch) | |
tree | 8249192853bb460a7c28ff0c7709a6c7a8661a9c | |
parent | a96c038b0940f3df66f4d1772e963642c9908722 (diff) | |
download | semanticscuttle-49fa996cd7be1b0f7e3b43dc7c622c2f6a901e76.tar.gz semanticscuttle-49fa996cd7be1b0f7e3b43dc7c622c2f6a901e76.tar.bz2 |
more information on custom theme creation
-rw-r--r-- | doc/themes.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/themes.rst b/doc/themes.rst index 7c40ef2..007388f 100644 --- a/doc/themes.rst +++ b/doc/themes.rst @@ -11,9 +11,14 @@ In ``data/config.php``, set your theme like this: :: $theme = 'darkmood'; +The available themes are the folders in ``www/themes/``. +By default, SemanticScuttle ships only one usable theme ("default") and one +to demonstrate how to create your own theme ("testdummy"). + Creating your own theme ======================= +Have a look at the "testdummy" theme in ``www/themes/testdummy/``. CSS and image files ------------------- @@ -26,6 +31,10 @@ The main CSS file that automatically gets included is :: www/themes/$themename/scuttle.css +Several template files in SemanticScuttle include image files. If they do not +exist in your theme, the default ones are used automatically. +Note that this is not true for images that are specified in the CSS files. + Template files -------------- |