aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy/dark/theme.php
blob: 339c477a025a07b69c80c266bc13fb3bf216bb53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php

/*
* Name: Dispy Dark
* Description: Dispy Dark: Dark, Spartan, Sleek, and Functional
* Version: 1.2
* Author: Simon <http://simon.kisikew.org/>
* Maintainer: Simon <http://simon.kisikew.org/>
* Screenshot: <a href="screenshot.jpg">Screenshot</a>
*/

$a = get_app();
$a->theme_info = array(
    'family' => 'dispy',
    'name' => 'dark',
    'version' => '1.2'
);

function dispy_dark_init(&$a) {
    /** @purpose set some theme defaults
    */
    $cssFile = null;
    $colour = 'dark';
	$colour_path = "/dark/";

    // set css
    if (!is_null($cssFile)) {
        $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
    }
}