]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy/light/theme.php
Merge remote branch 'upstream/master'
[friendica.git] / view / theme / dispy / light / theme.php
1 <?php
2
3 /*
4  * Name: Dispy Light
5  * Description: Dispy Light: Light, Spartan, Sleek, and Functional
6  * Version: 1.2.1
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.1'
17 );
18
19 function dispy_light_init(&$a) {
20
21     /** @purpose set some theme defaults
22     */
23     $cssFile = null;
24     $colour = 'light';
25         $colour_path = "/light/";
26
27     // set css
28     if (!is_null($cssFile)) {
29         $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
30     }
31 }
32