diff options
author | msquare <msquare@notrademark.de> | 2017-07-20 20:48:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-20 20:48:57 +0200 |
commit | 3406967ab4bf60fd00a22541a6b5a8155121cbad (patch) | |
tree | ab10822d61e7a2549be99bf2e7964351ddda484b /config | |
parent | 37d4edcd9ace5021b6eb02761a9c3865c5607f33 (diff) | |
parent | e1762e7764d4ee4f37757ecd2630f62a440dbf0e (diff) |
Merge pull request #329 from MyIgel/renderer
Added renderer
Diffstat (limited to 'config')
-rw-r--r-- | config/config.default.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/config/config.default.php b/config/config.default.php index e816fe9c..ffa030db 100644 --- a/config/config.default.php +++ b/config/config.default.php @@ -29,9 +29,18 @@ return [ // From address of all emails 'no_reply_email' => 'noreply@engelsystem.de', - // Default theme of the start page, 1=style1.css + // Default theme, 1=style1.css 'theme' => 1, + // Available themes + 'available_themes' => [ + '4' => 'Engelsystem 33c3 (2016)', + '3' => 'Engelsystem 32c3 (2015)', + '2' => 'Engelsystem cccamp15', + '0' => 'Engelsystem light', + '1' => 'Engelsystem dark' + ], + // Number of News shown on one site 'display_news' => 6, |