blob: 7c40ef230c4eb2b30a642dd4b1a0ce1dd40244de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
======================
SemanticScuttle Themes
======================
SemanticScuttle may be changed visually by supplying custom "themes" that
modify the visual appearance.
Changing the current theme
==========================
In ``data/config.php``, set your theme like this: ::
$theme = 'darkmood';
Creating your own theme
=======================
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 ::
data/templates/default/
You may put your theme template files into ::
data/templates/$themename/
|