]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - doc/md/Theming.md
Merge pull request #1358 from shaarli/doc-add-screenshots
[github/shaarli/Shaarli.git] / doc / md / Theming.md
CommitLineData
b230bf20 1## Foreword
53ed6d7d 2
b230bf20 3There are two ways of customizing how Shaarli looks:
992af0b9 4
b230bf20
A
51. by using a custom CSS to override Shaarli's CSS
62. by using a full theme that provides its own RainTPL templates, CSS and Javascript resources
992af0b9 7
b230bf20 8## Custom CSS
53ed6d7d 9
b230bf20 10Shaarli's appearance can be modified by adding CSS rules to:
43ad7c8e 11
b230bf20
A
12- Shaarli < `v0.9.0`: `inc/user.css`
13- Shaarli >= `v0.9.0`: `data/user.css`
992af0b9 14
b230bf20 15This file allows overriding rules defined in the template CSS files (only add changed rules), or define a whole new theme.
992af0b9 16
b230bf20
A
17**Note**: Do not edit `tpl/default/css/shaarli.css`! Your changes would be overridden when updating Shaarli.
18
b230bf20 19## Themes
53ed6d7d 20
b230bf20 21Installation:
43ad7c8e 22
b230bf20
A
23- find a theme you'd like to install
24- copy or clone the theme folder under `tpl/<a_sweet_theme>`
25- enable the theme:
26 - Shaarli < `v0.9.0`: edit `data/config.json.php` and set the value of `raintpl_tpl` to the new theme name:
27 `"raintpl_tpl": "tpl\/my-template\/"`
28 - Shaarli >= `v0.9.0`: select the theme through the _Tools_ page
992af0b9 29
b230bf20 30## Community CSS & themes
53ed6d7d 31
b230bf20 32### Custom CSS
53ed6d7d 33
34- [mrjovanovic/serious-theme-shaarli](https://github.com/mrjovanovic/serious-theme-shaarli) - A serious theme for Shaarli
35- [shaarli/shaarli-themes](https://github.com/shaarli/shaarli-themes)
b230bf20
A
36
37### Themes
53ed6d7d 38
39- [AkibaTech/Shaarli Superhero Theme](https://github.com/AkibaTech/Shaarli---SuperHero-Theme) - A template/theme for Shaarli
40- [alexisju/albinomouse-template](https://github.com/alexisju/albinomouse-template) - A full template for Shaarli
41- [ArthurHoaro/shaarli-launch](https://github.com/ArthurHoaro/shaarli-launch) - Customizable Shaarli theme
42- [dhoko/ShaarliTemplate](https://github.com/dhoko/ShaarliTemplate) - A template/theme for Shaarli
43- [kalvn/shaarli-blocks](https://github.com/kalvn/shaarli-blocks) - A template/theme for Shaarli
44- [kalvn/Shaarli-Material](https://github.com/kalvn/Shaarli-Material) - A theme (template) based on Google's Material Design for Shaarli, the superfast delicious clone
45- [ManufacturaInd/shaarli-2004licious-theme](https://github.com/ManufacturaInd/shaarli-2004licious-theme) - A template/theme as a humble homage to the early looks of the del.icio.us site
b230bf20
A
46
47### Shaarli forks
53ed6d7d 48
49- [misterair/Limonade](https://github.com/misterair/limonade) - A fork of (legacy) Shaarli with a new template
50- [vivienhaese/shaarlitheme](https://github.com/vivienhaese/shaarlitheme) - A Shaarli fork meant to be run in an openshift instance
992af0b9 51
b230bf20 52## Example installation: AlbinoMouse theme
53ed6d7d 53
992af0b9 54With the following configuration:
43ad7c8e 55
992af0b9
V
56- Apache 2 / PHP 5.6
57- user sites are enabled, e.g. `/home/user/public_html/somedir` is served as `http://localhost/~user/somedir`
58- `http` is the name of the Apache user
59
60```bash
61$ cd ~/public_html
62
63# clone repositories
64$ git clone https://github.com/shaarli/Shaarli.git shaarli
65$ pushd shaarli/tpl
66$ git clone https://github.com/alexisju/albinomouse-template.git
67$ popd
68
69# set access rights for Apache
70$ chgrp -R http shaarli
71$ chmod g+rwx shaarli shaarli/cache shaarli/data shaarli/pagecache shaarli/tmp
72```
73
74Get config written:
75- go to the freshly installed site
76- fill the install form
77- log in to Shaarli
78
43ad7c8e 79Edit Shaarli's [configuration](Shaarli-configuration):
992af0b9
V
80```bash
81# the file should be owned by Apache, thus not writeable => sudo
82$ sudo sed -i s=tpl=tpl/albinomouse-template=g shaarli/data/config.php
83```