]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy/light/theme.php
Merge branch 'master' of github.com:annando/friendica
[friendica.git] / view / theme / dispy / light / theme.php
1 <?php
2
3 /*
4  * Name: Dispy
5  * Description: <p style="white-space:pre;">            Dispy: Light, Spartan, Sleek, and Functional<br />            Dispy Dark: Dark, Spartan, Sleek, and Functional</p>
6  * Version: 1.2
7  * Author: Simon <http://simon.kisikew.org/>
8  * Maintainer: Simon <http://simon.kisikew.org/>
9  * Screenshot: <a href="screenshot.jpg">Screenshot</a>
10  */
11
12 $a = get_app();
13 $a->theme_info = array(
14     'family' => 'dispy',
15         'name' => 'light',
16         'version' => '1.2'
17 );
18
19 function dispy_light_init(&$a) {
20
21     /** @purpose set some theme defaults
22     */
23     $cssFile = null;
24     $colour = false;
25     $colour = 'light';
26
27     // custom css
28     if (!is_null($cssFile)) {
29         $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
30     }
31 }
32