]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy/dark/theme.php
move plink sparkles to the right html element in dispy
[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  * Author: Simon <http://simon.kisikew.org/>
7  * Maintainer: Simon <http://simon.kisikew.org/>
8  * Screenshot: <a href="screenshot.jpg">Screenshot</a>
9  */
10
11 $a = get_app();
12 $a->theme_info = array(
13     'family' => 'dispy',
14     'name' => 'dark',
15 );
16
17 function dispy_dark_init(&$a) {
18     /** @purpose set some theme defaults
19     */
20     $cssFile = null;
21     $colour = 'dark';
22         $colour_path = "/dark/";
23
24     // set css
25     if (!is_null($cssFile)) {
26         $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
27     }
28 }
29