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